/* サプライチェーン診断ツール - 共通スタイル */

/* カラーパレット - プロフェッショナルB2Bデザイン */
:root {
  --primary-navy: #2c3e50;
  --secondary-navy: #34495e;
  --dark-navy: #1a252f;
  --accent-blue: #3498db;
  --primary-blue: #3498db;
  --secondary-blue: #2980b9;
  --light-blue: #e8f4f8;
  
  --primary-gray: #2C3E50;
  --secondary-gray: #5A6C7D;
  --light-gray: #F7F9FB;
  --border-gray: #E1E8ED;
  
  --success-green: #27AE60;
  --warning-orange: #F39C12;
  --error-red: #E74C3C;
  --accent-yellow: #F9D342;
  
  --text-primary: #2C3E50;
  --text-secondary: #7F8C8D;
  --white: #ffffff;
  --bg-color: #F7F9FB;
  
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  --shadow-float: 0 4px 16px rgba(44, 62, 80, 0.3);
}

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--light-gray);
  min-height: 100vh;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #002C46;
  color: var(--white);
  height: 80px;
  box-shadow: var(--shadow-md);
  z-index: 100;
  transition: all 0.3s ease;
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.logo-main {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.logo-by {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

.logo:hover {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.nav-links li {
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  opacity: 0.8;
}

.btn-contact-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 62px;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 0;
  overflow: visible;
}

.btn-contact-header img {
  height: 62px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(1.2);
  transform-origin: center;
  object-fit: contain;
}

.btn-contact-header:hover img {
  transform: scale(1.2) translateY(-2px);
  filter: brightness(1.1);
}

/* ヒーローセクション */
.hero {
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 399px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 44, 70, 0.72);
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 48px;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.hero-cta-section {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.hero-cta {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.btn-hero {
  padding: 0 48px;
  height: 62px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  font-weight: 400;
}

.btn-hero svg {
  transition: transform 0.3s ease;
}

.btn-hero:hover svg {
  transform: translateX(4px);
}

/* ボタン - 丸みと影を強化 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  height: 62px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2980b9 50%, #1f6391 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  box-shadow: 
    0 4px 15px rgba(52, 152, 219, 0.4),
    0 8px 25px rgba(52, 152, 219, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* パルスグローアニメーション */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(52, 152, 219, 0.4),
      0 8px 25px rgba(52, 152, 219, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(52, 152, 219, 0.6),
      0 8px 35px rgba(52, 152, 219, 0.4),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  }
}

/* ボタン内のシャインエフェクト */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* グラスモーフィズムのオーバーレイ */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #52b3e8 0%, #3498db 50%, #2980b9 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 6px 25px rgba(52, 152, 219, 0.6),
    0 12px 40px rgba(52, 152, 219, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(52, 152, 219, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: none;
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 
    0 2px 10px rgba(52, 152, 219, 0.5),
    inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--accent-blue);
  color: var(--white);
  height: 52px;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background-color: var(--secondary-navy);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-float);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  height: 52px;
  box-sizing: border-box;
}

.btn-outline:hover {
  background-color: var(--accent-blue);
  color: var(--white);
}

.btn-large {
  padding: 0 56px;
  height: 52px;
  font-size: 24px;
  border-radius: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.btn-hero {
  padding: 0 64px;
  height: 62px;
  font-size: 28px;
  border-radius: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.btn-cta {
  padding: 0 60px;
  height: 52px;
  font-size: 26px;
  border-radius: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.btn-block {
  display: block;
  width: 100%;
}


/* カード - より丸く、柔らかく */
.card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card-header {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-navy);
  letter-spacing: 0.02em;
}

.card-body {
  color: var(--text-secondary);
  font-size: 26px;
  line-height: 1.9;
  font-weight: 500;
}

/* フォーム */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-label .required {
  color: var(--error-red);
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  transition: all 0.3s;
  background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

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

.form-hint {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* プログレスバー */
.progress-container {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 18px;
  background-color: #ecf0f1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(44, 62, 80, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue) 0%, #52b3e8 100%);
  border-radius: 16px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.4);
}

.progress-text {
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

/* グリッド */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* セクション - 通常の高さ */
.section {
  padding: 120px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: var(--primary-navy);
  letter-spacing: 0;
  line-height: 1.3;
}

/* 特徴カード */
.feature-card {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-navy);
  letter-spacing: 0.02em;
}

.feature-desc {
  color: var(--text-secondary);
  line-height: 2.0;
  font-size: 24px;
  font-weight: 500;
}

/* タイプカード */
.type-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.type-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.type-emoji {
  font-size: 64px;
  margin-bottom: 16px;
}

.type-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.type-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.type-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.type-characteristics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.type-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #ecf0f1;
  color: var(--accent-blue);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* 質問カード */
.question-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-blue);
}

.category-icon {
  font-size: 32px;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

.question-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-gray);
}

.question-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.question-text {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

/* 結果ページ */
.result-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.result-emoji {
  font-size: 120px;
  margin-bottom: 20px;
}

.result-code {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 12px;
}

.result-name {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.result-short-desc {
  font-size: 20px;
  opacity: 0.9;
}

.result-section {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.result-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-section-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.examples-list {
  list-style: none;
  padding: 0;
}

.examples-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}

.examples-list li:last-child {
  border-bottom: none;
}

.examples-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

/* アクションボタングループ */
.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* フッター */
.footer {
  background: transparent;
  color: var(--white);
  padding: 0;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-section {
  margin-bottom: 32px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-text {
  opacity: 0.9;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.footer-cert-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-cert-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.footer-cert-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-media {
  margin-bottom: 32px;
}

.footer-keywords {
  margin-bottom: 32px;
}

.footer-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-keyword {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright .footer-text {
  font-size: 12px;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-certifications {
    grid-template-columns: 1fr;
  }
  
  .footer-keyword-list {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 300px;
    padding: 60px 20px 30px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta-section {
    padding: 30px 20px;
  }
  
  .btn-hero {
    padding: 0 32px;
    height: 62px;
    font-size: 16px;
  }
  
  .btn-contact-header {
    height: 52px;
  }
  
  .logo-main {
    font-size: 24px;
  }
  
  .logo-by {
    font-size: 12px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .btn-contact-header {
    height: 52px;
    font-size: 14px;
  }

  .section-title {
    font-size: 32px;
  }

  .card-header {
    font-size: 28px;
  }

  .card-body {
    font-size: 20px;
  }

  .feature-title {
    font-size: 24px;
  }

  .feature-desc {
    font-size: 20px;
  }

  .logo {
    font-size: 20px;
    letter-spacing: 1.5px;
    flex-shrink: 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }
  
  nav {
	width: auto;
	margin-right: -20px;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
  }
  
  .nav-links li:first-child {
    display: none;
  }
  
  .btn-contact-header img {
    width: 140px;
    height: auto;
    transform: scale(1);
  }

  .bg-decoration {
    opacity: 0.15;
  }

  .result-emoji {
    font-size: 80px;
  }

  .result-name {
    font-size: 32px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .btn-large {
    padding: 0 40px;
    height: 52px;
    font-size: 20px;
    border-radius: 50px;
  }
  
  .btn-hero {
    padding: 0 40px;
    height: 62px;
    font-size: 22px;
    border-radius: 50px;
  }
  
  .btn-cta {
    padding: 0 40px;
    height: 52px;
    font-size: 20px;
    border-radius: 50px;
  }
  
  .btn-contact-header {
    height: 52px;
  }
}

/* ユーティリティ */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* キャラクターカルーセル（ヒーローセクションのみ） */
.character-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.carousel-lane {
  position: absolute;
  left: 0;
  width: 300%;
  height: 150px;
  display: flex;
  gap: 80px;
}

.carousel-lane-1 {
  top: 15%;
  animation: carousel-scroll-1 120s linear infinite;
}

.carousel-lane-2 {
  top: 50%;
  transform: translateY(-50%);
  animation: carousel-scroll-2 110s linear infinite;
}

.carousel-lane-3 {
  top: 85%;
  transform: translateY(-100%);
  animation: carousel-scroll-3 100s linear infinite;
}

.carousel-character {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  opacity: 0.25;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.carousel-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  mix-blend-mode: multiply;
}

/* カルーセルアニメーション（右から左へ） */
@keyframes carousel-scroll-1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

@keyframes carousel-scroll-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

@keyframes carousel-scroll-3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

/* モバイル対応 */
@media (max-width: 768px) {
  .carousel-character {
    width: 80px;
    height: 80px;
    opacity: 0.18;
  }
  
  .carousel-lane {
    gap: 50px;
  }
}

/* 背景装飾用の動物イラスト */
.bg-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.bg-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  mix-blend-mode: multiply;
}

/* 各セクションのコンテンツを装飾より前面に */
.hero > .container,
.section > .container {
  position: relative;
  z-index: 1;
}

/* フローティングアニメーション - より動的に */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(var(--rotation)) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(calc(var(--rotation) + 3deg)) scale(1.05);
  }
  50% {
    transform: translateY(-30px) rotate(var(--rotation)) scale(1);
  }
  75% {
    transform: translateY(-15px) rotate(calc(var(--rotation) - 3deg)) scale(0.95);
  }
}

.bg-decoration.floating {
  animation: float 6s ease-in-out infinite;
}

.bg-decoration.floating-slow {
  animation: float 9s ease-in-out infinite;
}

.bg-decoration.floating-fast {
  animation: float 4.5s ease-in-out infinite;
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.scroll-indicator-arrow {
  font-size: 24px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* レスポンシブ対応：モバイルでは装飾を非表示 */
@media (max-width: 768px) {
  .bg-decoration {
    display: none;
  }
  
  /* モバイルではmin-heightを調整 */
  .hero {
    min-height: auto;
    padding: 60px 20px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* ===================================
   詳細診断レポートプレビューセクション
   =================================== */

/* レポートプレビューカード */
.report-preview-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFA94D 0%, #FFB963 25%, #FFDDB3 100%);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 12px 40px rgba(255, 169, 77, 0.4);
  position: relative;
  overflow: hidden;
}

/* レポートヘッダー */
.report-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.report-icon {
  font-size: 64px;
}

.report-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

/* レポートコンテンツ */
.report-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  min-height: 500px;
}

.report-chart-container {
  max-width: 400px;
  margin: 0 auto 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}

.report-text {
  font-size: 19px;
  line-height: 2.0;
  color: #2c3e50;
  margin: 0;
}

/* ロックオーバーレイ */
.report-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.7) 60%,
    rgba(255, 255, 255, 0.95) 85%,
    rgba(255, 255, 255, 1) 100%
  );
  backdrop-filter: blur(1.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  padding-bottom: 50px;
  border-radius: 16px;
  pointer-events: none;
}

.lock-icon {
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0.8;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.lock-message {
  font-size: 22px;
  color: #2c3e50;
  text-align: center;
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .report-preview-card {
    padding: 40px 24px;
  }
  
  .report-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .report-icon {
    font-size: 48px;
  }
  
  .report-title {
    font-size: 28px;
  }
  
  .report-content {
    padding: 30px 24px;
    min-height: 400px;
  }
  
  .report-chart-container {
    max-width: 300px;
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .report-text {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .lock-icon {
    font-size: 56px;
  }
  
  .lock-message {
    font-size: 17px;
    padding: 16px 24px;
  }
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
  .report-preview-card {
    padding: 50px 40px;
  }
  
  .report-content {
    padding: 40px;
    min-height: 450px;
  }
}
