/* =========================================
   JOURNAL PAGE – journalページ専用スタイル
========================================= */

/* Journal Hero */
.journal-hero {
  background-color: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

/* Journal List Section */
.journal-list {
  background-color: #f7f7f7;
}

.journal-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.journal-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.journal-date {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.journal-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.journal-card-title a {
  color: #222;
  text-decoration: none;
  transition: color: 0.18s ease;
}

.journal-card-title a:hover {
  color: #1f9c6b;
  text-decoration: none;
}

.journal-card-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* PC: 2カラムレイアウト */
@media (min-width: 768px) {
  .journal-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================
   ABOUT PAGE – aboutページ専用スタイル
========================================= */

/* About Hero */
.about-hero {
  background-color: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

/* About Philosophy */
.about-philosophy {
  background-color: #f7f7f7;
}

/* About Vision */
.about-vision {
  background-color: #ffffff;
}

/* About Story */
.about-story {
  background-color: #f7f7f7;
}

/* About Tree Link */
.about-tree-link {
  background-color: #ffffff;
}

/* 2カラムレイアウト */
.about-two-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-main {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.85;
}

.about-main p {
  margin-bottom: 1rem;
}

.about-main strong {
  font-weight: 600;
  color: #1f9c6b;
}

/* サイドバー */
.about-aside {
  padding: 1.4rem 1.2rem;
  border-radius: 1rem;
  background-color: #f6faf8;
  font-size: 0.88rem;
}

.about-aside-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #222;
}

.about-aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-aside-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  color: #444;
}

.about-aside-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f9c6b;
}

/* ワイドコンテンツ（サイドバーなし） */
.about-main-wide {
  max-width: 760px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.85;
}

.about-main-wide p {
  margin-bottom: 1rem;
}

.about-main-wide strong {
  font-weight: 600;
  color: #1f9c6b;
}

/* PCレイアウト */
@media (min-width: 768px) {
  .about-two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-main {
    flex: 2;
  }

  .about-aside {
    flex: 1;
  }
}

/* 共通: 交互背景色用クラス */
.section-alt {
  background-color: #f7f7f7;
}
