@charset "UTF-8";

/* =========================================================
   Editorial Zen - BUDDHAO Theme (Dark Mode)
========================================================= */

:root {
  /* BUDDHAO Color Palette */
  --bg-main: #0a0e17;        /* buddhao-dark */
  --bg-darker: #060911;      /* buddhao-darker */
  --card-bg: rgba(30, 41, 59, 0.5); /* buddhao-card */
  --card-border: #1e293b;    /* buddhao-slate */
  --text-main: #f1f5f9;      /* light gray/white for body */
  --muted: #94a3b8;          /* slate-400 */
  --primary: #2dd4a8;        /* buddhao-teal */
  --primary-hover: #1a9e7a;  /* buddhao-teal-dark */
  --gold: #d4a843;           /* buddhao-gold */
  --gold-light: #e8c46e;     /* buddhao-gold-light */
  
  /* Typography */
  --font-heading: 'Noto Sans JP', sans-serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 30px -15px rgba(0,0,0,0.3);
  --shadow-hover: 0 20px 40px -15px rgba(45, 212, 168, 0.15); /* subtle teal glow */
}

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

body {
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* 深い宇宙のような奥行きを出すグラデーション 背景 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(45, 212, 168, 0.05) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(212, 168, 67, 0.05) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   Layout Containers
========================================================= */
.editorial-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* =========================================================
   Header (Profile Component)
========================================================= */
.profile-header {
  text-align: center;
  margin-bottom: 80px;
}

.profile-image-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(45, 212, 168, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--card-border);
  transition: all 0.5s ease;
}

.profile-image-wrap:hover {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(45, 212, 168, 0.3);
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.profile-image-wrap:hover img {
  transform: scale(1.05);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: #ffffff;
}

/* 役職部分を視覚的に分離 */
.profile-suffix {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--muted);
  background: var(--bg-main);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--bg-darker);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(45, 212, 168, 0.2);
}

/* =========================================================
   Entry Sections (Main Content)
========================================================= */
.sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.entry {
  background: var(--card-bg);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.entry:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(45, 212, 168, 0.3);
  transform: translateY(-2px);
  background: rgba(30, 41, 59, 0.7);
}

@media (max-width: 600px) {
  .entry {
    padding: 32px 20px;
    border-radius: 12px;
  }
}

.entry-meta {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.entry-meta i {
  font-size: 1.3rem;
}

.entry-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ffffff;
}

/* 追加した画像のスタイリング */
.entry-image {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.entry-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.entry:hover .entry-image img {
  transform: scale(1.02);
  opacity: 1;
}

.entry-price {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.entry-content {
  font-size: 1.1rem;
  color: #e2e8f0; /* より明るいホワイト（slate-200相当） */
  margin-bottom: 40px;
}

.entry-content p {
  margin-bottom: 1.5em;
  text-align: justify;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

/* 購読特典などのインフォメーションボックス */
.bonus-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(45, 212, 168, 0.1);
  border: 1px dashed rgba(45, 212, 168, 0.5);
  border-radius: 8px;
  color: #f1f5f9;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.bonus-box i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bonus-box .highlight {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(45, 212, 168, 0.5);
  text-underline-offset: 4px;
}

/* =========================================================
   Buttons
========================================================= */
.editorial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--primary);
  color: var(--bg-darker);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 600px) {
  .editorial-button {
     width: auto;
  }
}

.editorial-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(45, 212, 168, 0.2);
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  margin-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* =========================================================
   Animations
========================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
