html {
  overflow-x: hidden;
}
body {
  font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  margin: 0;
  padding: 0;
  color: #333f4d;
  line-height: 1.6;
  background-color: #f8f9fa;
  overflow-x: hidden;
}
/* すべての画像に対して横幅は100%、高さは自動調整 */
img {
  max-width: 100%;
  height: auto;
}
/* 数字アイコン専用のスタイル */
.number-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  position: relative;
  flex-shrink: 0;
  margin-right: 15px;
}
.number-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.header {
  padding: 15px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo-box {
  width: 65px;
  height: 35px;
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  margin-right: 10px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ミニマルなLPデザインを表現 */
.logo-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}
/* ランディングページのコンテンツを表現 */
.logo-box::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 
      0 6px 0 rgba(255, 255, 255, 0.5),
      0 12px 0 rgba(255, 255, 255, 0.3);
}
.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: #333f4d;
}
.logo-subtext {
  font-size: 12px;
  color: #6c757d;
  letter-spacing: 1px;
}
.main-content {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  padding: 20px;
  padding-bottom: 0;
  position: relative;
  min-height: 500px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}
.main-content::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -50px;
  right: -50px;
}
.main-content::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: 50px;
  left: -50px;
}
.main-heading {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
/* ★ 変更点: ヘッドラインをメリット重視に書き換え */
.heading-text {
  background-color: white;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: bold;
  color: #3c6091;
  display: inline-block;
  margin: 5px 0;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* ★ 変更点: サブヘッドラインの背景色は既存を流用 */
.subheading-text {
  background-color: #ffb6c1;
  padding: 8px 15px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  display: inline-block;
  margin: 8px 0;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* ★ 新たに追加する「社会的証明」用のクラス */
.social-proof {
  text-align: center;
  margin: 8px 0;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.description {
  color: white;
  font-size: 16px;
  margin-bottom: -10px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.people-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 -40px 0;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.people-illustration img {
  width: 100%;
  object-fit: contain;
}
.offer-section {
  background: linear-gradient(135deg, #ffb6c1, #f08080);
  padding: 20px;
  border-radius: 20px 20px 0 0;
  position: relative;
  margin-top: 0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 2;
}
.offer-text {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #333f4d;
}
.offer-highlight {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.offer-note {
  font-size: 9px;
  text-align: center;
  margin-bottom: 15px;
  color: #555;
}
.pdf-preview {
  text-align: center;
  margin-top: 20px;
}
.pdf-image {
  max-width: 90%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* 以下、2つ目のHTML以降は省略せずにすべてそのまま既存を残す */
.stats-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  margin-top: 20px;
}
.headline {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #333f4d;
}
.headline-highlight {
  color: #3c6091;
  font-weight: bold;
}
.survey-info {
  font-size: 14px;
  margin-bottom: 15px;
  color: #6c757d;
}
.statistics {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.source {
  font-size: 10px;
  color: #6c757d;
  margin-bottom: 20px;
}
.stats-people-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.quote-box {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-top: 20px;
  border-left: 3px solid #3c6091;
}
.quote-heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #333f4d;
}
.quote-text {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
}
.impact-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 20px;
  background: linear-gradient(135deg, #2d1b4e, #1a0b2e);
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.impact-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  top: -100px;
  right: -100px;
}
.impact-headline {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
}
.message-bubble {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #333f4d;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  border-bottom: 2px solid #6b46c1;
}
.highlight {
  color: #6b46c1;
  font-weight: bold;
}
.impact-people-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 10px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.future-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.future-container::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}
.future-container::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}
.future-content {
  position: relative;
  z-index: 1;
}
.future-headline {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.future-highlight {
  color: #ffb6c1;
  font-weight: bold;
}
.future-text-content {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.future-white-box {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  color: #333f4d;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.future-box-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.future-blue-text {
  color: #3c6091;
  font-weight: bold;
}
.future-button {
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  margin: 20px 0 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.future-button:hover {
  transform: translateY(-2px);
}
.future-note {
  font-size: 12px;
  color: #6c757d;
  text-align: center;
}
.benefits-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.benefits-header {
  text-align: center;
  margin-bottom: 25px;
}
.benefits-title {
  font-size: 22px;
  font-weight: bold;
  color: #333f4d;
  margin-bottom: 10px;
}
.benefits-subtitle {
  font-size: 16px;
  color: #6c757d;
}
.benefit-card {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 3px solid #3c6091;
  display: flex;
  align-items: flex-start;
}
.benefit-number {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}
.benefit-content {
  flex-grow: 1;
}
.benefit-title {
  font-size: 18px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 8px;
}
.benefit-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
}
.flow-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.flow-header {
  text-align: center;
  margin-bottom: 25px;
}
.flow-title {
  font-size: 22px;
  font-weight: bold;
  color: #333f4d;
  margin-bottom: 10px;
}
.flow-subtitle {
  font-size: 16px;
  color: #6c757d;
}
.flow-steps {
  position: relative;
  padding-left: 30px;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, #3c6091, #f08080);
}
.flow-step {
  position: relative;
  margin-bottom: 30px;
}
.flow-step:last-child {
  margin-bottom: 0;
}
.flow-step::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  z-index: 2;
}
.flow-step:nth-child(1)::before {
  content: '1';
}
.flow-step:nth-child(2)::before {
  content: '2';
}
.flow-step:nth-child(3)::before {
  content: '3';
}
.flow-step:nth-child(4)::before {
  content: '4';
}
.flow-step:nth-child(5)::before {
  content: '5';
}
.flow-step-title {
  font-size: 18px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 8px;
}
.flow-step-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
}
.testimonials-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 25px;
}
.testimonials-title {
  font-size: 22px;
  font-weight: bold;
  color: #333f4d;
  margin-bottom: 10px;
}
.testimonials-subtitle {
  font-size: 16px;
  color: #6c757d;
}
.testimonial-card {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 3px solid #3c6091;
}
.testimonial-text {
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: bold;
  color: #3c6091;
  text-align: right;
}
/* ★ 変更点: CTAボタンの文言や見た目をより強調 */
.cta-button {
  display: block;
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.clock-icon {
  display: inline-block;
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background-color: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  padding: 25px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  z-index: 10;
}
.modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.modal-title {
  font-size: 22px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 5px;
}
.modal-subtitle {
  font-size: 16px;
  color: #6c757d;
}
.question-container {
  display: none;
}
.question-container.active {
  display: block;
}
.question-number {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}
.question-text {
  font-size: 18px;
  font-weight: bold;
  color: #333f4d;
  margin-bottom: 20px;
}
.answer-options {
  margin-bottom: 30px;
}
.answer-option {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.answer-option:hover {
  background-color: #f5f5f5;
}
.answer-option.selected {
  background-color: #3c6091;
  color: white;
  border-color: #3c6091;
}
.progress-container {
  background-color: #f5f5f5;
  border-radius: 10px;
  height: 8px;
  margin: 30px 0;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(to right, #3c6091, #f08080);
  width: 20%;
  transition: width 0.3s ease;
}
.question-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.nav-button {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-button.prev {
  background-color: #f0f0f0;
  color: #333f4d;
}
.nav-button.next {
  background-color: #3c6091;
  color: white;
}
.nav-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.nav-button:hover:not(.disabled) {
  transform: translateY(-2px);
}
.result-container {
  display: none;
  text-align: center;
}
.result-container.active {
  display: block;
}
.result-title {
  font-size: 24px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 15px;
}
.result-message {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 30px;
}
.result-cta {
  background: linear-gradient(135deg, #f08080, #ffb6c1);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.result-cta:hover {
  transform: translateY(-2px);
}
.site-footer {
  background: linear-gradient(135deg, #2c4f7c, #1a304d);
  color: #ffffff;
  padding: 15px 10px;
  margin-top: 20px;
}
.footer-container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
  position: relative;
}
.footer-links a:not(:last-child):after {
  content: '|';
  position: absolute;
  right: -10px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* 診断結果プレビュー用のスタイル */
.result-preview {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.preview-section {
  margin-bottom: 20px;
}

.preview-title {
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 10px;
  font-size: 16px;
  border-left: 3px solid #3c6091;
  padding-left: 8px;
}

.preview-graph {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.radar-chart {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.market-value {
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.value-bar {
  height: 15px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.value-progress {
  height: 100%;
  background: linear-gradient(to right, #3c6091, #f08080);
  border-radius: 10px;
}

.value-label {
  font-size: 14px;
  color: #495057;
  margin-bottom: 5px;
}

.career-matches {
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.career-match {
  margin-bottom: 8px;
  color: #495057;
  font-size: 14px;
}

.timing-meter {
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-align: center;
}

.meter-scale {
  width: 150px;
  height: 75px;
  background: linear-gradient(to right, #e9ecef, #ffb6c1, #f08080);
  border-radius: 75px 75px 0 0;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.meter-pointer {
  width: 2px;
  height: 50px;
  background-color: #333f4d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(45deg);
}

.meter-label {
  position: absolute;
  bottom: 5px;
  font-size: 10px;
  color: #333f4d;
}

.meter-label.low {
  left: 15px;
}

.meter-label.medium {
  left: 50%;
  transform: translateX(-50%);
}

.meter-label.high {
  right: 15px;
}

.timing-message {
  font-size: 14px;
  font-weight: bold;
  color: #3c6091;
}

.blur-text {
  filter: blur(3px);
}

.blur-box {
  position: relative;
}

.blur-box::after {
  content: "完全版で確認できます";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(60, 96, 145, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  white-space: nowrap;
}

.result-complete-message {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.lock-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 60px;
  opacity: 0.1;
}

.message-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.message-content {
  font-size: 14px;
  line-height: 1.6;
}

.result-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06C755, #04A73E);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.line-icon {
  background-color: white;
  color: #06C755;
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
}

.result-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.result-footnote {
  font-size: 12px;
  color: #6c757d;
  text-align: center;
  margin-top: 10px;
}

/* LINE登録ポップアップのスタイル */
.line-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.line-popup-container {
  background: linear-gradient(135deg, #3c6091, #2c4f7c);
  width: 90%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.line-popup-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -100px;
}

.line-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  z-index: 10;
}

.line-popup-content {
  padding: 25px 20px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: center;
}

.line-popup-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.line-popup-subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.line-logo-area {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-logo {
  width: 50px;
  height: 50px;
  background-color: #06C755;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.line-text {
  color: #333f4d;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
}

.line-benefit {
  font-size: 14px;
  color: #ffb6c1;
}

.highlight-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  margin: 15px 0;
}

.highlight-title {
  font-weight: bold;
  color: #ffb6c1;
  font-size: 16px;
  margin-bottom: 10px;
}

.benefit-list {
  padding-left: 15px;
  margin-bottom: 0;
  text-align: left;
}

.benefit-item {
  margin-bottom: 8px;
  font-size: 14px;
  position: relative;
  list-style-type: none;
  padding-left: 5px;
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: -15px;
  color: #ffb6c1;
}

.line-popup-cta {
  display: block;
  background: linear-gradient(135deg, #06C755, #04A73E);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  margin: 20px 0 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}

.line-popup-close-link {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 15px;
  font-size: 14px;
  text-decoration: none;
}

/* 診断セクションの初期非表示 */
#diagnosis-section {
  display: none;
}

/* 診断結果のスタイル */
.result-title {
  font-size: 20px;
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 15px;
  text-align: center;
}

.result-section {
  margin-bottom: 20px;
}

.result-section-title {
  font-weight: bold;
  color: #3c6091;
  margin-bottom: 10px;
  font-size: 16px;
  border-left: 3px solid #3c6091;
  padding-left: 8px;
}

.highlight-text {
  color: #3c6091;
  font-weight: bold;
}

.main-heading-h1 {
  /* SEO目的のため視覚的に隠す */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  
  /* 非表示でも検索エンジンのために内容を整える */
  font-size: 24px;
  font-weight: bold;
  color: #3c6091;
  text-align: center;
  z-index: 1;
}