/*
Theme Name: mikiZONE
Theme URI: https://mikizone.com
Author: mikiZONE
Description: イラストレーター「ミッキー画伯とにくきゅう」(mikiZONE) のオリジナルテーマ。ミルキーブルー × 生成りの紙 × 明朝体。最小構成版（トップページのみ）。
Version: 0.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mikizone
*/

/* ---------------------------------------------------------------
   Design tokens
--------------------------------------------------------------- */
:root {
  --milky-blue: #DCEFF4;
  --eucalyptus: #BFD8CC;
  --lavender:   #DCCFEA;
  --lemon:      #F6E9A6;
  --accent-pink:#D889A5;
  --accent-pink-hover:#C97694;
  --off-white:  #FAF9F6;
  --cream:      #F6F3ED;
  --light-beige:#ECE7DF;
  --text:       #4B4B4B;
  --text-light: #8C8C8C;
  --text-body:  #6B6B6B;

  --font-mincho: 'Shippori Mincho', serif;
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-gothic: 'Zen Kaku Gothic New', sans-serif;

  --shadow-card: 0 2px 10px rgba(75,75,75,.05);
  --shadow-photo: 0 3px 14px rgba(75,75,75,.08);
  --shadow-pink: 0 1px 3px rgba(216,137,165,.25);
}

/* ---------------------------------------------------------------
   Base
--------------------------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  background-image: repeating-linear-gradient(0deg, rgba(140,130,110,.025) 0 1px, transparent 1px 7px);
  font-family: var(--font-gothic);
  font-weight: 300;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease;
}

img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.site-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Eyebrow (英字見出し) */
.eyebrow {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--text-light);
}

/* Buttons */
.btn-pink {
  display: inline-block;
  background: var(--accent-pink);
  color: var(--off-white);
  padding: 15px 34px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover { background: var(--accent-pink-hover); }

.btn-ghost {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--light-beige);
  color: var(--text);
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: .08em;
}
.btn-ghost:hover { border-color: #d8d2c8; }

/* View all リンク */
.view-more {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .16em;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
}
.view-more:hover { color: var(--accent-pink-hover); border-color: var(--accent-pink-hover); }

/* セクション見出し(中央) */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  text-align: center;
}
.section-head h2 {
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1.8;
}
.section-head .section-lead {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .04em;
}

/* 画像プレースホルダー(斜線ストライプ) — 実画像に置換予定 */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-light);
}
.ph-beige { background: repeating-linear-gradient(45deg, #ECE7DF, #ECE7DF 12px, #f3efe8 12px, #f3efe8 24px); }
.ph-blue  { background: repeating-linear-gradient(45deg, #DCEFF4, #DCEFF4 12px, #e9f5f8 12px, #e9f5f8 24px); }
.ph-green { background: repeating-linear-gradient(45deg, #BFD8CC, #BFD8CC 12px, #d0e2d8 12px, #d0e2d8 24px); }
.ph-purple{ background: repeating-linear-gradient(45deg, #DCCFEA, #DCCFEA 12px, #e8dff2 12px, #e8dff2 24px); }
.ph-lemon { background: repeating-linear-gradient(45deg, #F6E9A6, #F6E9A6 12px, #faf1c4 12px, #faf1c4 24px); }

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 64px;
  border-bottom: 1px solid var(--light-beige);
  background: rgba(250,249,246,.9);
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.site-logo {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .14em;
  color: var(--text);
  line-height: 1.3;
}
.site-tagline {
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-light);
  line-height: 1.8;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 1.6;
}
.site-nav a:hover { color: var(--accent-pink-hover); }

.nav-shop {
  display: inline-flex;
  align-items: center;
  background: var(--accent-pink);
  color: var(--off-white);
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  box-shadow: var(--shadow-pink);
}
.nav-shop:hover { background: var(--accent-pink-hover); color: var(--off-white); }

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  padding: 88px 96px;
  background: linear-gradient(180deg, #FAF9F6 0%, #DCEFF4 140%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-copy .eyebrow { font-size: 15px; }
.hero h1 {
  font-size: 42px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.hero-lead {
  margin: 0;
  font-size: 14.5px;
  line-height: 2.3;
  color: var(--text-body);
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--milky-blue);
  border-radius: 6px;
}
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  border: 10px solid #fff;
  box-shadow: 0 6px 24px rgba(75,75,75,.10);
}
.hero-stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-pink);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-en);
  font-size: 22px;
  box-shadow: 0 2px 6px rgba(216,137,165,.35);
  transform: rotate(8deg);
}

/* ---------------------------------------------------------------
   実績数字帯
--------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 96px;
  border-top: 1px solid var(--light-beige);
  border-bottom: 1px solid var(--light-beige);
  background: var(--cream);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--light-beige);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif-en);
  font-size: 38px;
  color: var(--text);
  line-height: 1.4;
}
.stat-num small {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
}
.stat-num.stat-num-ja {
  font-family: var(--font-mincho);
  font-size: 30px;
  padding: 4px 0;
}
.stat-label {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-light);
}

/* ---------------------------------------------------------------
   まいつき変身カレンダー
--------------------------------------------------------------- */
.section { padding: 92px 96px 0; }
.section-last { padding-bottom: 96px; }

.henshin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}
.henshin-card {
  background: #fff;
  border-radius: 8px;
  padding: 14px 14px 20px;
  box-shadow: 0 2px 10px rgba(75,75,75,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease;
}
.henshin-card:nth-child(1) { transform: rotate(-.6deg); }
.henshin-card:nth-child(2) { transform: rotate(.5deg); }
.henshin-card:nth-child(3) { transform: rotate(-.4deg); }
.henshin-card:hover { transform: rotate(0deg); }

.henshin-thumb {
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}
.henshin-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 6px;
}
.henshin-month {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--text-light);
}
.henshin-month.is-new { color: var(--accent-pink); }
.henshin-title {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.henshin-next {
  border: 1px dashed var(--light-beige);
  border-radius: 8px;
  padding: 14px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  background: rgba(246,243,237,.5);
  text-align: center;
}
.henshin-next-q {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eucalyptus);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-en);
  font-size: 18px;
  color: var(--text);
}
.henshin-next .henshin-title { color: var(--text-light); font-weight: 400; }

.section-more {
  text-align: center;
  margin-top: 32px;
}

/* ---------------------------------------------------------------
   お知らせ / グッズ
--------------------------------------------------------------- */
.news-goods {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 92px 96px 0;
}
.col-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.col-head .eyebrow { font-size: 13px; }
.col-head h2 {
  font-size: 23px;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px solid var(--light-beige);
  font-size: 13.5px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.9;
}
.news-date {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--text-light);
  flex: none;
}
.col-more {
  margin-top: 16px;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--text-light);
}
.col-more:hover { color: var(--accent-pink-hover); }

.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.goods-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.goods-thumb {
  aspect-ratio: 1/1;
  border-radius: 6px;
  border: 6px solid #fff;
  box-shadow: 0 2px 8px rgba(75,75,75,.06);
  font-size: 10px;
}
.goods-name {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
}

/* ---------------------------------------------------------------
   3スタイル
--------------------------------------------------------------- */
.styles-panel {
  background: var(--milky-blue);
  background-image: radial-gradient(rgba(255,255,255,.5) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  border-radius: 16px;
  padding: 64px 64px 56px;
}
.styles-panel .section-head { margin-bottom: 44px; }
.styles-panel .eyebrow { color: #7d99a3; }
.styles-panel .section-head h2 { font-size: 28px; }
.styles-panel .section-lead { color: var(--text-body); }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.style-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px 20px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.style-thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
}
.style-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.style-name {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.style-desc {
  font-size: 12.5px;
  line-height: 2;
  color: var(--text-body);
}

/* ---------------------------------------------------------------
   ギャラリー
--------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-photo,
.gallery-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  border: 8px solid #fff;
  box-shadow: var(--shadow-photo);
  object-fit: cover;
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 4px;
}
.gallery-title {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.gallery-style {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--text-light);
}
.gallery-grid + .section-more { margin-top: 36px; }

/* ---------------------------------------------------------------
   プロフィール
--------------------------------------------------------------- */
.profile-panel {
  background: var(--cream);
  border-radius: 16px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: center;
}
.profile-photo-wrap { position: relative; }
.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--off-white);
  box-shadow: var(--shadow-photo);
}
.profile-paw {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--eucalyptus);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.profile-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-head .eyebrow { font-size: 13px; }
.profile-title-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.profile-title-row h2 {
  font-size: 24px;
  letter-spacing: .04em;
}
.profile-role {
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--text-light);
}
.profile-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 2.3;
  color: var(--text-body);
}
.profile-text strong {
  color: var(--accent-pink);
  font-weight: 500;
}
.profile-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-small {
  display: inline-block;
  border: 1px solid #d8d2c8;
  background: var(--off-white);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--text);
}
.btn-small:hover { color: var(--accent-pink-hover); }

/* ---------------------------------------------------------------
   イベント出展・実績
--------------------------------------------------------------- */
.events {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.events-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.events-left .col-head h2 { font-size: 26px; margin-bottom: 0; }
.events-left .col-head .section-lead {
  font-size: 13px;
  color: var(--text-light);
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 2px 10px rgba(75,75,75,.06);
  border-left: 3px solid var(--eucalyptus);
  color: var(--text);
  line-height: 1.8;
}
.event-card.is-next { border-left-color: var(--accent-pink); }
.event-date {
  font-family: var(--font-serif-en);
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--text-light);
}
.event-card.is-next .event-date { color: var(--accent-pink); }
.event-name {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
}
.event-place {
  font-size: 12px;
  color: var(--text-light);
}

.events-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 44px;
}
.event-history {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-body);
}
.event-history-row {
  display: flex;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--light-beige);
  line-height: 1.9;
}
.event-history-year {
  font-family: var(--font-serif-en);
  color: var(--text-light);
  flex: none;
  width: 64px;
  letter-spacing: .06em;
}
.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.event-pill {
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--text-body);
  line-height: 1.8;
}

/* ---------------------------------------------------------------
   ご依頼CTA
--------------------------------------------------------------- */
.order-cta {
  background: #fff;
  border: 1px solid var(--light-beige);
  border-radius: 16px;
  padding: 64px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background-image: radial-gradient(rgba(220,239,244,.55) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.order-stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-pink);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-en);
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(216,137,165,.3);
  transform: rotate(-6deg);
}
.order-cta h2 {
  font-size: 28px;
  letter-spacing: .06em;
  line-height: 1.8;
}
.order-lead {
  margin: 0;
  font-size: 13.5px;
  line-height: 2.2;
  color: var(--text-body);
  max-width: 520px;
}
.order-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.order-genres {
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--text-light);
}

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--light-beige);
  padding: 44px 96px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.9;
  font-size: 12px;
  color: var(--text-body);
}
.footer-logo {
  font-family: var(--font-serif-en);
  font-size: 22px;
  letter-spacing: .14em;
  color: var(--text);
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-line-btn {
  display: inline-block;
  background: var(--text);
  color: var(--off-white);
  padding: 11px 26px;
  border-radius: 10px;
  font-size: 12.5px;
  letter-spacing: .08em;
}
.footer-line-btn:hover { background: #3a3a3a; color: var(--off-white); }
.footer-sns {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: .08em;
}
.footer-sns a { color: var(--text-body); }
.footer-sns a:hover { color: var(--accent-pink-hover); }
.footer-copy {
  border-top: 1px solid var(--light-beige);
  padding-top: 16px;
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-light);
}

/* ---------------------------------------------------------------
   Responsive (スマホ: 1カラム化)
--------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding: 64px 40px; gap: 48px; }
  .hero-visual { max-width: 440px; }
  .section, .news-goods { padding-left: 40px; padding-right: 40px; }
  .stats { padding: 36px 40px; }
  .site-header { padding: 22px 40px; }
  .site-footer { padding: 40px 40px 32px; }
  .henshin-grid { grid-template-columns: repeat(2, 1fr); }
  .events { grid-template-columns: 1fr; gap: 40px; }
  .events-right { padding-top: 0; }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }
  .site-nav { gap: 18px; font-size: 13px; }
  .site-nav a { padding: 4px 0; }

  .hero { padding: 48px 24px; }
  .hero h1 { font-size: 30px; }
  .section, .news-goods { padding-left: 24px; padding-right: 24px; }
  .section { padding-top: 64px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 28px 24px; }
  .stat:nth-child(2) { border-right: none; }
  .stat-num { font-size: 30px; }

  .ph { font-size: 9px; }

  /* 変身カレンダー: グッズ欄と同じ3カラム横並び */
  .henshin-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .henshin-card,
  .henshin-next { padding: 8px 8px 12px; gap: 8px; }
  .henshin-meta { padding: 0 2px; gap: 2px; }
  .henshin-month { font-size: 10px; letter-spacing: .08em; }
  .henshin-title { font-size: 11.5px; line-height: 1.7; }
  .henshin-next { grid-column: 1 / -1; flex-direction: row; justify-content: center; padding: 14px; gap: 14px; }
  .henshin-next .henshin-meta { text-align: left; }
  .henshin-next-q { width: 32px; height: 32px; font-size: 14px; flex: none; }

  .news-goods { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; }

  /* 3スタイル: 3カラム横並び */
  .styles-panel { padding: 40px 20px 36px; }
  .styles-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .style-card { padding: 8px 8px 14px; gap: 10px; border-radius: 10px; }
  .style-thumb { border-radius: 6px; }
  .style-name { font-size: 13px; }
  .style-desc { font-size: 10px; line-height: 1.8; }
  .style-desc br { display: none; }

  /* ギャラリー: 3カラム横並び(白フチ・キャプションを縮小) */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gallery-item { gap: 8px; }
  .gallery-photo,
  .gallery-thumb { border-width: 4px; }
  .gallery-caption { flex-direction: column; align-items: flex-start; gap: 2px; padding: 0 2px; }
  .gallery-title { font-size: 11px; line-height: 1.7; }
  .gallery-style { font-size: 10px; }

  .profile-panel {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
    justify-items: center;
    text-align: left;
  }

  .order-cta { padding: 44px 28px; }
  .order-cta h2 { font-size: 22px; }

  .site-footer { padding: 36px 24px 28px; }
  .footer-links { align-items: flex-start; }
}

/* ---------------------------------------------------------------
   記事詳細 (#6a) / 固定ページ 共通
--------------------------------------------------------------- */
.article {
  padding: 72px 24px 0;
}

.article-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.article-cat {
  display: inline-block;
  background: var(--milky-blue);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11.5px;
  letter-spacing: .08em;
  line-height: 1.8;
}
.article-cat:hover { background: #cde7ee; }

.article-date {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--text-light);
}

.article-title {
  font-size: 30px;
  line-height: 1.9;
  letter-spacing: .04em;
}
.page-title { font-size: 34px; }

.article-eyecatch {
  max-width: 560px;
  margin: 0 auto 56px;
}
.article-eyecatch img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  border: 10px solid #fff;
  box-shadow: var(--shadow-photo);
}

/* 本文カラム(Gutenbergブロック含む) */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2.4;
  font-weight: 300;
  color: var(--text-body);
}

.entry-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent-pink);
  text-underline-offset: 4px;
}
.entry-content a:hover { color: var(--accent-pink-hover); }

.entry-content h2 {
  font-size: 21px;
  line-height: 1.9;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--light-beige);
  padding-bottom: 10px;
  margin: 48px 0 20px;
}
.entry-content h3 {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .04em;
  margin: 40px 0 16px;
}
.entry-content p { margin: 0 0 1.8em; }

.entry-content img {
  border-radius: 6px;
  border: 8px solid #fff;
  box-shadow: 0 3px 14px rgba(75,75,75,.07);
}
.entry-content figure {
  margin: 32px 0;
}
.entry-content figcaption {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 10px;
}

.entry-content blockquote {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  margin: 32px 0;
  padding: 28px 32px 24px;
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2.2;
}
.entry-content blockquote::before {
  content: "\201C";
  font-family: var(--font-serif-en);
  font-size: 34px;
  color: var(--accent-pink);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.entry-content blockquote p { margin: 0; }

.entry-content ul,
.entry-content ol {
  padding-left: 1.6em;
  margin: 0 0 1.8em;
}
.entry-content li { margin-bottom: .4em; }

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 13px;
}
.entry-content th,
.entry-content td {
  border: 1px solid var(--light-beige);
  padding: 10px 14px;
  text-align: left;
}
.entry-content th {
  background: var(--cream);
  font-weight: 500;
}

.entry-content hr {
  border: 0;
  border-top: 1px solid var(--light-beige);
  margin: 48px 0;
}

/* タグ */
.article-tags {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tag {
  border: 1px solid var(--light-beige);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--text-body);
  line-height: 1.8;
}
.article-tag:hover { color: var(--accent-pink-hover); border-color: #d8d2c8; }

/* 前後記事ナビ */
.article-nav {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--light-beige);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  font-size: 12.5px;
  line-height: 1.9;
}
.article-nav a { color: var(--text-body); }
.article-nav a:hover { color: var(--accent-pink-hover); }
.article-nav-prev { text-align: left; }
.article-nav-next { text-align: right; }
.article-nav-pill {
  display: inline-block;
  background: var(--cream);
  border-radius: 999px;
  padding: 8px 20px;
  letter-spacing: .06em;
}

/* 関連記事(cream帯) */
.related {
  background: var(--cream);
  border-top: 1px solid var(--light-beige);
  margin-top: 92px;
  padding: 72px 24px;
}
.related-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.related .section-head { margin-bottom: 40px; }
.related .section-head h2 { font-size: 24px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.related-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-thumb {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
}
.related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.related-date {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-light);
}
.related-title {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.9;
}
.related-card:hover .related-title { color: var(--accent-pink-hover); }

/* 記事詳細のあとにフッターが続くときの余白 */
.article + .site-footer,
.archive-page + .site-footer { margin-top: 96px; }
.related + .site-footer { margin-top: 0; }

/* ---------------------------------------------------------------
   一覧・アーカイブ (index.php)
--------------------------------------------------------------- */
.archive-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 0;
}
.archive-header { margin-bottom: 32px; }
.archive-title { font-size: 28px; }

.archive-list {
  display: flex;
  flex-direction: column;
}
.archive-item { font-size: 14px; }
.archive-empty {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
}

.navigation.pagination {
  margin-top: 40px;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  display: inline-block;
  border: 1px solid var(--light-beige);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--text-body);
}
.navigation.pagination .page-numbers.current {
  background: var(--text);
  border-color: var(--text);
  color: var(--off-white);
}
.navigation.pagination a.page-numbers:hover { color: var(--accent-pink-hover); }
.navigation.pagination .screen-reader-text {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* ---------------------------------------------------------------
   記事・一覧のレスポンシブ
--------------------------------------------------------------- */
@media (max-width: 720px) {
  .article { padding-top: 48px; }
  .article-title { font-size: 22px; }
  .page-title { font-size: 24px; }
  .archive-page { padding-top: 48px; }
  .archive-title { font-size: 22px; }

  .article-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .article-nav-prev,
  .article-nav-next { text-align: center; }

  .related { padding: 48px 20px; margin-top: 64px; }
  .related-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .related-card { padding: 8px 8px 12px; gap: 8px; }
  .related-title { font-size: 11.5px; line-height: 1.7; }
  .related-date { font-size: 10px; }

  .article + .site-footer,
  .archive-page + .site-footer { margin-top: 64px; }
}
