/* ==========================================
   Re:Jo Lab. LP - Professional POP Design
   ========================================== */

/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-pink: #FF85A6;
  --color-pink-light: #FFF0F5;
  --color-yellow: #FFD93D;
  --color-blue: #6BCB77;
  --color-purple: #9D61FF;
  --color-text: #4A4A4A;
  --color-text-gray: #777;
  --font-pop: 'Zen Maru Gothic', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-pop);
  color: var(--color-text);
  line-height: 1.8;
  background-color: #fff;
  background-image: radial-gradient(var(--color-pink-light) 20%, transparent 20%), radial-gradient(#F0F8FF 20%, transparent 20%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* 画像中央寄せ設定 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; 
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* スマホ/PC 切り替え用 */
@media (max-width: 768px) {
  .pc-only { display: none !important; }
}
@media (min-width: 769px) {
  .sp-only { display: none !important; }
}

/* ========== Icons ========== */
.icon-left { margin-right: 8px; }
.icon-right { margin-left: 8px; }
.title-icon { color: var(--color-pink); margin-right: 10px; }

/* Theme Icons Colors */
.color-pink .card-icon-area { color: var(--color-pink); }
.color-yellow .card-icon-area { color: #E6C200; } /* 黄色は少し濃くして見やすく */
.color-blue .card-icon-area { color: var(--color-blue); }
.color-purple .card-icon-area { color: var(--color-purple); }

.icon-color-pink { color: var(--color-pink); }
.icon-color-yellow { color: #E6C200; }
.icon-color-blue { color: var(--color-blue); }

/* ========== Animations ========== */
.animate-pop-in {
  animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  opacity: 0;
  transform: scale(0.5);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes bounceBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.js-scroll-trigger {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.js-scroll-trigger.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0,0,0,0.1);
  transition: all 0.2s;
  margin: 0 auto;
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--color-pink);
  color: white;
  border: 2px solid white;
  font-size: 1.1rem;
}

.btn-bounce {
  animation: bounceBtn 2s infinite;
}

/* ========== Hero Section ========== */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(24px, 5vw, 42px);
  color: var(--color-text);
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.6; /* 読みやすく */
}

.highlight {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
  padding: 0 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-pink);
  font-weight: 700;
  margin-bottom: 40px;
}

.hero-image img {
  border-radius: 30px;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(255, 133, 166, 0.3);
  transform: rotate(-2deg);
  margin: 0 auto;
}

.hero-btn-area {
  margin-top: 48px;
  text-align: center;
}

/* ========== Intro ========== */
.intro { padding: 80px 0; }

.intro-box {
  background: white;
  padding: 40px;
  border-radius: 30px;
  border: 3px solid var(--color-pink);
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.05);
}

.intro-box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 20px solid var(--color-pink);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.intro-text {
  font-size: 1rem;
  margin-bottom: 24px;
}

.intro-question {
  font-size: 1.4rem;
  color: var(--color-pink);
  font-weight: 900;
  line-height: 1.6;
}

/* ========== Themes (Icons) ========== */
.themes { padding: 60px 0; }
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 48px;
  color: var(--color-text);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.theme-card {
  padding: 32px 24px;
  background: white;
  border-radius: 20px;
  text-align: center;
  border: 3px solid;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.theme-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0,0,0,0.05);
}

.theme-card.color-pink { border-color: var(--color-pink); }
.theme-card.color-yellow { border-color: var(--color-yellow); }
.theme-card.color-blue { border-color: var(--color-blue); }
.theme-card.color-purple { border-color: var(--color-purple); }

.card-icon-area {
  font-size: 3rem;
  margin-bottom: 16px;
}

.theme-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.theme-desc {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
}

/* ========== Other Contents ========== */
.other-contents-box {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 3px dashed #ddd;
  line-height: 2.2;
  font-weight: 500;
}

/* ========== Special Events ========== */
.event-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.event-image img { width: 100%; margin: 0 auto; }

@media(min-width: 768px) {
  .event-box { flex-direction: row; align-items: center; }
  .event-box.reverse { flex-direction: row-reverse; }
  .event-image { width: 50%; }
  .event-content { width: 50%; padding: 40px; }
}

.event-content { padding: 30px 24px; }
.event-title {
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.event-desc {
  margin-bottom: 16px;
  line-height: 1.8;
}
.event-schedule {
  color: var(--color-text-gray);
  font-size: 0.9rem;
  font-weight: bold;
}

/* ========== Hosts ========== */
.hosts {
  background: #FFF0F5;
  padding: 80px 0;
}

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

.host-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 133, 166, 0.15);
  border: 2px solid #FFE0EB;
  transition: transform 0.3s;
}

.host-card:hover { transform: translateY(-10px); }

.host-image-area {
  background-color: #FFF0F5;
  padding: 40px 20px 0;
  text-align: center;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.host-image-area img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  margin: 0 auto; 
}

.host-info {
  padding: 30px 24px;
  background: white;
}

.host-company {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}

.host-name {
  font-size: 1.8rem;
  color: var(--color-pink);
  font-weight: 900;
  margin-bottom: 16px;
}

.host-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.host-tags span {
  display: block;
  font-size: 0.8rem;
  color: #888;
  background: #f9f9f9;
  padding: 4px 8px;
  margin-bottom: 4px;
  border-radius: 4px;
}

/* ========== Schedule Card ========== */
.schedule-card {
  background: white;
  border: 4px dashed var(--color-yellow);
  padding: 40px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  margin-top: 20px;
}

.sticker {
  background: var(--color-yellow);
  color: #555;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.schedule-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  margin-top: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  background: #E6F0FF;
  color: #0066cc;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9em;
}

/* ========== Values & Vision Updated ========== */
.values-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: stretch; /* 高さ揃え */
}
@media (max-width: 768px) {
  .values-wrapper { grid-template-columns: 1fr; }
}

.value-box, .vision-box {
  border: 3px solid #eee;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.value-box { background: #FFF9E6; border-color: var(--color-yellow); }
.vision-box { background: #E6F0FF; border-color: #B4D7FF; }

.value-label, .vision-label {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 900;
  color: var(--color-text);
}

.value-items {
  display: flex;
  flex-direction: row; /* 横並び */
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .value-items { flex-direction: column; }
}

.value-item {
  background: white;
  padding: 20px 10px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
  flex: 1;
  min-width: 140px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.value-item i { font-size: 1.5rem; margin-bottom: 8px; display: block; }

/* Vision Specifics */
.vision-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vision-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  font-weight: bold;
}

.vision-text {
  font-size: 1.8rem; /* 大きく強調 */
  font-weight: 900;
  color: var(--color-pink);
  line-height: 1.4;
}

/* ========== CTA (Bottom) ========== */
.cta-inner {
  text-align: center;
  padding: 20px;
}
.cta-logo img {
  margin: 0 auto 24px;
  max-width: 250px;
}
.cta-text {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.cta-subtitle {
  color: #888;
  margin-bottom: 40px;
}

/* ========== Floating CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 90%;
  max-width: 400px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-out;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-cta .btn-pop {
  display: block;
  background: linear-gradient(to right, #FF85A6, #FF6B90);
  color: white;
  padding: 18px;
  border-radius: 50px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 144, 0.4);
  border: 3px solid white;
}

@media (min-width: 769px) {
  .floating-cta { display: none; }
}

/* ========== Footer ========== */
.footer {
  background: #444;
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}