@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
固定ページでシェア・フォローボタンをまとめて非表示
************************************/
.page .sns-share,
.page .sns-follow,
.page .date-tags {
    display: none;
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}



/************************************
** 投稿表示ページの体裁用
　 AI指導のもと追加した
　ナチュラルテイストのCSSスタイル
************************************/

body.single-recipe {
  background-color: #fdfcf8 !important; /* ナチュラルな生成色 */
}

.recipe-page {
  font-family: 'Yu Mincho', serif;
  color: #4a3f2a;
  padding: 2em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.ingredients-list li {
  list-style: circle;
  margin-left: 1.5em;
}

.user-comment, .shop-comment {
  background: #fff;
  border-left: 4px solid #c2b280;
  padding: 1em;
  border-radius: 6px;
  margin-bottom: 2em;
}

.meta-section {
  font-size: 0.9em;
  color: #777;
}
.like-button {
  background: #e0d4b7;
  border: none;
  padding: 0.5em 1em;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1em;
}

.related-recipes a {
  color: #6b4f3f;
  text-decoration: none;
}
.related-recipes a:hover {
  text-decoration: underline;
}

/*────────────────────────────────────────
  1. カスタム投稿ページ(single‐recipe.php)のギャラリー
     PC 4列 / スマホ 1列
────────────────────────────────────────*/
.recipe-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media screen and (max-width: 600px) {
  .recipe-page .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* 画像をコンテナいっぱいにフィットさせる */
.recipe-page .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/*────────────────────────────────────────
  募集回アーカイブ(.round-archive .round-grid)
  PC: 4列 / スマホ: 2列
────────────────────────────────────────*/
.round-archive .round-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media screen and (max-width: 600px) {
  .round-archive .round-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 各アイテムの共通スタイル */
.round-archive .round-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

/* タイトル */
.round-archive .item-title {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

/* 投稿者ニックネーム */
.round-archive .item-author {
  font-size: 1rem;
  color: #555;
  margin: 0 0 0.5rem;
}

/* サムネイル画像 */
.round-archive .item-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
/* ────────────────────────────────────────
   レシピ一覧／募集回一覧アイテムのオレンジ枠
   ──────────────────────────────────────── */
.recipe-archive .recipe-item,
.round-archive  .round-item {
  border: 1px solid orange;  /* オレンジの1px線 */
  padding: 0.5rem;            /* 内側余白：お好みで調整 */
  box-sizing: border-box;     /* 枠線込みのサイズ調整 */
  margin-bottom: 1rem;        /* アイテム間のスペース */
}

/* 必要に応じて角丸にするなら */
.recipe-archive .recipe-item,
.round-archive  .round-item {
  border-radius: 2px;        /* 角丸：お好みで */
}

/*────────────────────────────────────────
  レシピ一覧ページ (archive-recipe.php)
  PC 4列 / スマホ 2列
────────────────────────────────────────*/
.recipe-archive .recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .recipe-archive .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recipe-archive .recipe-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ffa500; /* オレンジ枠 */
  border-radius: 6px;
  padding: 0.75rem;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-archive .recipe-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.recipe-archive .recipe-thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.recipe-archive .recipe-item-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem 0 0;
  color: #333;
  line-height: 1.4;
}

/* サイドバー用レシピウィジェット */
.widget-recipe-sidebar {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-recipe-sidebar .recipe-sidebar-item {
  margin-bottom: 0.6rem;
}
.widget-recipe-sidebar .recipe-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.widget-recipe-sidebar .recipe-sidebar-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  flex: 0 0 48px;
}
.widget-recipe-sidebar .title {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #333;
}
.widget-recipe-sidebar .title:hover {
  text-decoration: underline;
}


