/*
Template:easel
Theme Name:canvas on EASEL
Version: 1.1.0
*/

/* ここから下に書いたCSSが、親テーマCSSに上書きされます。 */

/* =========================
   NL header visual
========================= */

.header {
  background: url('https://hinata-aoi.com/wp-content/uploads/2026/03/20b1cfef-a083-4c0f-9691-675875c9a4cf-e1774919676364.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 410px;
  padding: 0;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.08);
  z-index: 0;
}

#inner-header {
  position: relative;
  z-index: 1;
  min-height: 410px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 95px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* サイト名 */
#logo,
#logo a {
  margin: 0;
  color: #f8f4ec;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255, 255, 255, 0.10);
  background: transparent !important;
}

/* キャッチ */
.site-desc {
  margin: 12px 0 0;
  color: #f3ede4;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  background: transparent !important;
}

/* メニュー全体 */
nav[role="navigation"] {
  margin-top: auto;
  width: 100%;
  padding-top: 28px;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* ul */
.nav.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 0;
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* li */
.nav.top-nav li {
  list-style: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* a */
.nav.top-nav li a {
  display: inline-block;
  color: #f8f3ec;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

.nav.top-nav li a:hover {
  opacity: 0.8;
}

/* ハンバーガー */
#formenubar {
  color: #f8f3ec;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: transparent !important;
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
  .header,
  #inner-header {
    min-height: 280px;
  }

  #inner-header {
    padding: 72px 16px 22px;
  }

  #logo,
  #logo a {
    font-size: 34px;
    letter-spacing: 0.05em;
  }

  .site-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }

  nav[role="navigation"] {
    padding-top: 18px;
  }

  .nav.top-nav {
    gap: 10px 16px;
  }

  .nav.top-nav li a {
    font-size: 14px;
  }
}


/* 小説サイト「月と花と星の庭」専用スタイル */
.garden-wrapper {
    font-family: "Yu Mincho", "游明朝", serif;
    color: #4a4d5a;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* 幻想的な見出し */
.garden-heading {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin: 40px 0 20px;
    color: #5d6275;
    display: flex;
    align-items: center;
    justify-content: center;
}
.garden-heading::before, .garden-heading::after {
    content: '✦';
    font-size: 0.9rem;
    margin: 0 15px;
    color: #a5adcc;
}

/* テキストの柔らかさ */
.garden-intro-text {
    line-height: 2;
    margin-bottom: 60px;
}

/* ボタンのデザイン */
.garden-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.garden-link-btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none !important;
    color: #5d6275 !important;
    border: 1px solid #c9d1e6;
    border-radius: 30px;
    background: #ffffff;
    transition: 0.3s;
}
.garden-link-btn:hover {
    background: #f0f4ff;
    border-color: #a5adcc;
    transform: translateY(-2px);
}

/* 更新欄（掲示板風・淡いブルー） */
.garden-update-container {
    background-color: #f4f7fa;
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #c9d1e6;
    text-align: left;
    margin-top: 50px;
}
.update-inner-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #5d6275;
}
.update-inner-info {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
}
/* ショートコードが入る部分 */
.update-shortcode-area {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
}

/* セクション全体 */
.garden-section-box {
    margin-top: 50px;
    background: #fafbfd;
    border: 1px solid #e8edf5;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

/* セクション見出し */
.garden-section-title {
    font-size: 1.2rem;
    color: #5d6275;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

/* セクション説明 */
.garden-section-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
}

/* 作品カード */
.garden-work-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 20px;
    margin: 20px auto 0;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* 作品タイトル */
.garden-work-title {
    font-size: 1.05rem;
    color: #5d6275;
    margin-bottom: 12px;
}

/* 作品紹介 */
.garden-work-text {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* 短編ショートコード表示枠 */
.garden-shortcode-box {
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}