/*
Theme Name: Chihirodo
Author: あなたの名前
Version: 0.1.0
Description: ちひろ堂のフルオリジナルテーマ
Text Domain: chihirodo
*/

/* --- Design Tokens（全体共通） --- */
:root{
  /* colors */
      /* サイト背景（全ページ統一） */
  --fg: #5C3737;
  --brand: #711230;      /* CTAなどの基調色 */
  --accent: #F0BA10;     /* 補助アクセント */

  /* typography */
  --ff-h1: "Kaisei Opti", serif;     /* H1 用 */
  --ff-h2:"Asul", serif;      /* H2 用（アルファベット想定なら他でも可） */
  --ff-body: 'Noto Sans JP', system-ui, sans-serif; /* 本文用（p） */
  --fz-100: 14px;
  --fz-200: 16px;
  --fz-300: 18px;
  --fz-400: 20px;

  /* radius & shadow */
  --radius-pill: 999px;
  --shadow-1: 0 4px 14px rgba(0,0,0,.12);

  /* spacing scale */
  --space-1: .375rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
}

/* --- ほんの少しの共通ユーティリティ --- */

.visually-hidden{ position:absolute !important; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); width:1px; height:1px; overflow:hidden; white-space:nowrap; border:0; padding:0; margin:-1px; }


/*ヘッダー＆フッター＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

:root{ --max: 1120px; }
*{ box-sizing: border-box; }
.container{ max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* === Front page header: right aligned, white with soft shadow === */

.site-header{
  position:fixed;       /* ヒーローの上に重ねる */
  background: transparent;
  border-bottom: none;
  line-height: 2.0rem;
  background-image: none;
  z-index: 1000;
  margin: 30px;
}


#site-header .main-navigation .menu > li > a{
  color:#fff ;
  text-shadow:0 1px 3px rgba(0,0,0,.35);

}
.home .menu{ gap: 20px; }
.home .menu a{
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,.35); /* うっすら可読性UP */          
}

/* メニューを縦方向に */
.main-navigation .menu{
  display:flex;
  flex-direction:column;  /* ← 縦並び */
  gap:10px;
  margin-top:20px; 
  padding:0; list-style:none;
}

.main-navigation .menu a{
  display:block;
  line-height:1.2;
  color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.35);

}
.main-navigation ul.menu > li > a:hover {
  color: #533737 !important;
}
.header-logo{
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
}
/* ハンバーガー（SP時）も白に */
.home .nav-toggle .bar{ background: #fff; }

/* SPメニューを開いた時の背景と文字 */
@media (max-width: 900px){
  html.nav-open .main-navigation{
    background: rgba(0,0,0,.65); /* うっすら暗幕 */
  }
  .home .main-navigation .menu a{
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.4);

  }
}

/* = Footer 必須ミニマム ===================== */
/* Footer 内では container の背景を無効化 */
/* フッターメニューの基本（ul.footer-menuが出力される） */
.site-footer{ background:#5C4444; color:#ddd; }
.footer-menu{
  display:flex; gap:14px; list-style:none; margin:0; padding:0;
}
.footer-menu a{ color:inherit; text-decoration:none; opacity:.9; }
.footer-menu a:hover{ text-decoration:underline; }
.footer-widgets{ padding:64px 64px 0;}
/* 3カラムの3つ目（右カラム）にメニューが入っている場合、右寄せ */
.widgets-grid > .footer-menu{ justify-self: end; }

.widgets-grid{ 
  display:grid; 
  grid-template-rows: 2fr 1fr;
  gap:0px; align-items: center;
}


#site-footer > div.container.footer-widgets > div > div.widget-col.footer-1 > section:nth-child(2){
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-widgets ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.footer-logo{ 
  max-width:160px; 
  height:auto; 
  display:block; 
  margin: 0 auto;
}
.footer-copy,.footer-privacy{ 
  margin:8px 0 0;
  text-align:center;
  font-size:14px; 
  color:#cfcfcf; 
}
.footer-bottom{
  display:flex; 
  justify-content:space-between;
  left: auto;
  align-items:center;
  padding:14px 0;
}

/* Instagram をアイコン化（メニュー項目に is-ig を付ける） */
.footer-menu .menu-item.is-ig > a{
  display:inline-grid; 
  place-items:center;
  width:48px; 
  height:48px; 
  border-radius:8px;
  background-color: rgba(255, 255, 255, 0);          /* ← ここも background-color に */
  transition: background-color .2s ease, transform .2s ease;  /* ← 修正 */
  text-indent: -9999px; overflow: hidden;
}
.footer-menu .menu-item.is-ig > a{
  content:"";
  width:34px; height:34px; display:block; background: currentColor;
  /* シンプルなIGアイコン（マスクSVG） */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9zm6 1a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9zm6 1a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5z'/></svg>") no-repeat center / contain;
}

.footer-menu .menu-item.is-ig > a:hover{
  background: rgba(255,255,255,.18); transform: translateY(-1px);
}

/* スマホで縦積み */
@media (max-width: 640px){
  .widgets-grid{ grid-template-columns: 1fr; }
  .widgets-grid > .footer-menu{ justify-self: start; }
}



/* 画面に出さないスクリーンリーダー用テキスト */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/*投稿ページ用***********************************************************/

/* 共通（EVENT & レシピコラム）：全体背景 */
.bg-articles{
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.06)),
    url("assets/img/bg/bg.png") center / cover no-repeat;
  background-attachment: fixed; /* デスクトップの軽いパララックス */
}
.is-event-page .container,
.is-recipecol-page .container{
  max-width: 900px;
  min-width: 768px;
}
.is-event-page .card,
.is-recipecol-page .card{
  background-color: #DEDBD4;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  border-radius:12px;
}
.is-event-page .page_title,
.is-recipecol-page .page_title{
  text-align: center;
  margin: 100px 0px;
}
.is-event-page .page_title h1,
.is-recipecol-page .page_title h1{
  font-family:var(--ff-h2); 
  font-size: 3.0rem; 
  color: #AC1A1A;
}
#content > main > h2,
#content > main > h2{
  font-family: var(--ff-body);
  font-weight: 300;
  color: #5C3737;
  font-size: var( --fz-300);
    margin: 0px 50px;

}


/*投稿*/
#content > main > div.page_title h1{
  font-family: var(  --ff-h2);
  font-size: 3.2rem;
}
.post-grid{ display:grid; grid-template-columns:1fr; gap:24px; padding:50px; }



.is-event-page .card img{ display:block; width:100%; height:auto; aspect-ratio: 3/2; object-fit: cover; }
.card-body{ padding:12px 14px 16px; }
.card{height: fit-content;}
.card .meta{ font-size:12px; color:#666; margin-bottom:6px; }
.card h3{ font-size:18px; line-height:1.5; margin:4px 0 6px; }
.card p{ font-size:16px; color:#5C3737; margin:0; }
.card.is-past{ opacity:.6; }
.card .entry-content img{ max-width:100%; height:auto; display:block; } /* 画像をカード幅に収める */
.card .entry-content p{ margin:1em 0; }  /* 段落に余白 */

.is-event-page .card,
.is-recipecol-page .card{
  padding: 50px;
}

.is-event-page h3{
  margin: 50px 0px;
}
#content > main > div.post-grid.grid--cols-2 > article:nth-child(1) > div > span{
  display: flex;
  justify-self: end;
}

#event-64 > div > div.entry-content{
  margin-top: 50px;
}
.is-type-recipe .meta-type{ background:#dcfce7; color:#166534; }  /* レシピ */
.is-type-column .meta-type{ background:#e0e7ff; color:#3730a3; }   /* コラム */
.card-meta{ display:flex; justify-self: end; margin-bottom:6px; }
.card-meta--foot{ margin-top:8px; }

.card-meta .card-meta--foot{
  align-items: end;
}

.meta-item{ 
  font-size:12px; 
  line-height:1; 
  padding:2px 8px; 
  border-radius:999px; 

  color:#5C3737; }

.meta-kind--marche,
.meta-kind--lesson,
.meta-type--recipe,
.meta-type--column{  /* マルシェ */
  color:#ffffff; 
  width: auto;
  height: 40px;
  border-radius: 20px;
  padding: 0px 20px;
  line-height: 40px;
  display: inline-block;
  margin-left: auto;
  margin-top: 10px;
} 
.meta-kind--marche,
.meta-type--recipe{
  background:#711230; 
  }
.meta-kind--lesson,
.meta-type--column{ /* 教室案内 */
  background:#F0BA10; 
}  
/*SNS*/
/* Share buttons: layout */
/* Share layout */
.share {
  display: flex;
  gap: .3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons (a & button) */
.share .share-btn {
  appearance: none; -webkit-appearance: none;
  border: 0; background: transparent; cursor: pointer;

  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;

  color: var(--text-color, #5C3737); /* ← サイト本文色に追従 */
  text-decoration: none;
  transition: background-color .2s ease, transform .15s ease;
}
.share .share-btn:hover { background-color: rgba(0,0,0,.06); transform: translateY(-1px); }
.share .share-btn:active { transform: translateY(0); }
.share .share-btn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* SVG icon size */
.sns-ic { width: 36px; height: 36px; display: block; }

.share .share-btn.copy {
  position: relative;
}

/* コピーしましたメッセージ */
.share .share-btn.copy .copy-msg {
  position: absolute;
  top: 50%;
  left: 110%; /* アイコンの右に */
  transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.share .share-btn.copy.is-copied .copy-msg {
  opacity: 1;
}



/*投稿ページ用ここまで***********************************************************/
/*お問い合わせページ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.cf{ max-width: 720px; margin: 0 auto; }
.cf-row{ margin-bottom: 14px; }
.cf label{ display:block; font-weight:600; margin-bottom:6px; }
.cf input[type="text"],
.cf input[type="email"],
.cf textarea{
  width:100%; box-sizing:border-box; padding:10px 12px; border:1px solid #ccc; border-radius:8px; background:#fff;
}
.cf .req{ font-weight:700; color:#c33; font-size:.9em; margin-left:.3em; }
.cf-agree label{ font-weight:400; display:flex; gap:.5em; align-items:center; }
.cf .cf-submit{ padding:.6em 1.2em; border-radius:8px; border:0; background:#111; color:#fff; cursor:pointer; }
.cf .cf-submit:hover{ opacity:.9; }
.cf .hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.cf-msg{ margin-bottom:12px; padding:10px 12px; border-radius:8px; }
.cf-msg.ok{ background:#e9f7ef; color:#165e2b; border:1px solid #bfe5cb; }
.cf-msg.ng{ background:#fdecea; color:#611a15; border:1px solid #f5c6cb; }

/* body上余白を削除 */
.is-event-page header,
.is-event-page .site-header {
  top: 30px !important;
  margin-top: 0 !important; 
}

/* 2ページだけ：ヘッダーを消す（ロゴ・グロナビ含む） */
.no-header .site-header,
.no-header .header-inner,
.no-header .primary-nav { display: none !important; }

/* 蝶メニューを右上に移動（クラス名が .ghost-menu or .bfly のどちらでも拾う） */
.layout-slim .ghost-menu,
.layout-slim .bfly{
  position: fixed !important;
  top: 16px; right: 16px;
  bottom: auto; left: auto;
  z-index: 1200;
  opacity: 1; pointer-events: auto;
}


/* ページ本体は少し上に詰める（ヘッダーが無いぶん） */
.layout-slim .site-main{ padding-top: 24px; }



/* 2ページだけ：画面高いっぱい＋フッターを最下部へ */
body.layout-slim{
  min-height: 100svh;           /* アドレスバー対策で svh */
  display: flex;
  flex-direction: column;
}
.layout-slim .site-main{ flex: 1 0 auto; }   /* 本文が伸びる領域 */
.layout-slim #site-footer{ margin-top: auto; } /* ここが“最下部へ”押し下げ */


/*お問い合わせ、プライバシーポリシー*/
.layout-slim .container{
  max-width:900px;
  padding: 50px 10px;
}

#site-footer > div.container.footer-widgets ul{
  gap: 20px;
}
.layout-slim #content > main{
  padding: 50px 20px;
}
#post-86 > div > formf{
  padding:50px 0px;
  gap: 30px;
}
.layout-slim .entry-content{
  margin:50px 0;
}
.layout-slim .cf-submit{
  background-color: rgba(204, 51, 51, 0.763);
  margin-bottom: 50px;
}
.layout-slim .home-link{
  margin: 100px 50px;
}

/* デスクトップではハンバーガーを隠す（SPだけ表示） */
.nav-toggle{ display:none; }
@media (max-width:900px){
  .nav-toggle{ display:none; }
}

/* ====== レスポンシブ（下り） ================================================================ */
/*タブレットサイズ*/



@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {

h2{
  font-size: var(--fz-300);
}
}

@media (max-width:768px){
  
  .container{
    z-index: 0;
    width:100%;
    height: auto;
}

}



/*スマホサイズ*/

@media (max-width:767.98px){
:root{
  /* typography */
  --fz-100: 12px;
  --fz-200: 14px;
  --fz-300: 16px;
  --fz-400: 18px;


  /* radius & shadow */
  --radius-pill: 999px;
  --shadow-1: 0 4px 14px rgba(0,0,0,.12);

  /* spacing scale */
  --space-1: .375rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
}

.bg-articles{
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.06)),
    url("assets/img/bg/bg.png") center / contain repeat;
  background-attachment: fixed; /* デスクトップの軽いパララックス */
}
#site-header{ display: none !important; }

.is-event-page .container,
.is-recipecol-page .container{
  max-width: 480px;
  width: 100%;
  min-width: 100%;
}
.is-event-page h2{margin-left: 10px;}
.is-event-page #content > main > div.page_title h1,
.is-recipecol-page #content > main > div.page_title h1{
  margin: 10px;
  font-size: 30px;
}
.is-event-page #content > main > div.page_title,
.is-recipecol-page #content > main > div.page_title{
  margin: 30px;
  text-align: center;
}
.is-event-page .post-grid,
.is-recipecol-page .post-grid{
  padding:  20px;
}
.card{height: fit-content;}
.is-event-page .card-title,
.is-recipecol-page .card-title{
  padding: 10px 0px;
}

.is-event-page .card,
.is-recipecol-page .card{
  padding: 20px;
}
.meta-kind--marche,
.meta-kind--lesson,
.meta-type--recipe,
.meta-type--column{  /* マルシェ */
  color:#ffffff; 
  width: auto;
  height: 24px;
  border-radius: 12px;
  padding: 0px 10px;
  line-height: 24px;
  display: inline-block;
  margin-left: auto;
  font-size: 10px;

}

.sec-title{margin-left: 10px;}
 .share .share-btn.copy .copy-msg {
    top: auto;
    bottom: 110%;              /* ボタンのちょっと上 */
    left: 50%;                 /* ボタン中央に合わせる */
    transform: translateX(-50%);
    max-width: calc(100vw - 2rem); /* 画面より大きくならない保険 */
    white-space: nowrap;
  }
.is-recipecol-page  main > div.page_title h1{font-size: 1.8rem;}
.is-event-page h3,
.is-recipecol-page h3{
  padding: 20px;
}

.footer-bottom .footer-right{
  margin-right: 10px !important;
}





}
@media (max-width: 900px){ .post-grid{ grid-template-columns: 1fr; } }

@media (max-width: 900px){
  .bg-articles{ background-attachment: scroll; } /* モバイルSafari対策 */
}


@media (orientation: landscape) and (max-height: 500px) {

#site-header{
  display: none;
}

.is-event-page .container,
.is-recipecol-page .container{
  max-width: 768px;
  min-width: 375px;
}


}

