/* ============================
   POP ORANGE-YELLOW CARTOON THEME
   ============================ */

:root {
  --primary-color: #ff8c00;      /* オレンジ */
  --primary-dark: #e67600;
  --secondary-color: #ffd54f;    /* 黄色 */
  --accent-color: #ffa726;

  --text-primary: #3a2f20;
  --text-secondary: #6a5b40;
  --text-light: #8c7a60;

  --bg-primary: #fff7d1;
  --bg-secondary: #ffeeb3;
  --bg-accent: #fff3c4;

  --border-light: rgba(255, 153, 0, 0.25);
  --border-primary: rgba(255, 153, 0, 0.4);

  --shadow-light: 0 4px 10px rgba(255, 153, 0, 0.15);
  --shadow-medium: 0 8px 20px rgba(255, 153, 0, 0.25);
  --shadow-heavy: 0 10px 30px rgba(255, 153, 0, 0.3);

  --border-radius-sm: 10px;
  --border-radius-md: 16px;
  --border-radius-lg: 25px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  min-height: 100vh;
  padding: 20px;
}

/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
  padding-bottom: 40px;
  border: 2px solid var(--border-primary);
  overflow: hidden;
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

/* Header */
.header {
  background: linear-gradient(135deg, #ffb300, #ff8c00);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.4) 0,
    rgba(255,255,255,0.4) 10px,
    rgba(255,255,255,0.15) 10px,
    rgba(255,255,255,0.15) 20px
  );
  opacity: 0.6;
}

.app-title,
.policy-title {
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  font-weight: 700;
  text-shadow: 3px 3px 0 rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.app-subtitle {
  margin-top: 15px;
  opacity: 0.9;
  font-size: 1.2rem;
}

/* Content */
.content {
  padding: 50px;
}

.section {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Title */
.section-title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
  color: var(--primary-color);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.4);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 70px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 10px;
  transition: width var(--transition-medium);
}

.section:hover .section-title::after {
  width: 120px;
}

/* Info Box */
.app-info {
  background: var(--bg-accent);
  padding: 35px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-light);
  margin-bottom: 30px;
}

.app-info:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

/* List Items */
.features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.features-list li {
  padding: 12px 0 12px 45px;
  position: relative;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-medium);
}

.features-list li::before {
  content: "⭐";
  position: absolute;
  left: 10px;
  font-size: 1.5rem;
}

.features-list li:hover {
  background: rgba(255, 153, 0, 0.15);
  transform: translateX(5px);
}

/* Company Info */
.company-info,
.contact-info {
  background: var(--bg-accent);
  padding: 35px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-light);
}

.company-info:hover,
.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Date Info */
.date-info {
  text-align: center;
  background: var(--bg-accent);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-light);
  margin-top: 40px;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .content {
    padding: 30px;
  }
  .header {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 20px;
  }
}
