@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.0.6
/************************************
****　目次
************************************/
.toc-title{
font-weight:bold;
}
.toc-title::after {
color:#337ab7;
}
.toc-list > li a {
font-weight: bold;
display:block;
margin-top:10px;
margin-left: 10px;
}
.toc-list > li a::before {
font-family: "Font Awesome 5 Free";
content : "\f144";
margin-right: 7px;
}
.toc-list > li li a {
font-weight: normal;
font-size: 95%;
margin-top:0;
margin-left: 2em;
}
.toc-list > li li a::before {
content: "";
width: 7px;
height: 7px;
left: -2px;
display: inline-block;
border-radius: 50%;
background: #90C31F;/*こちらで緑点の色を変更できます*/
position: relative;
margin-bottom: 2px;
}
.toc-list > li li li a {
font-weight: normal;
font-size: 95%;
margin-top:0;
margin-left: 2em;
}
.toc-list > li li li a::before {
content: "";
width: 7px;
height: 7px;
left: -2px;
display: inline-block;
border-radius: 50%;
background: #6495ed;/*こちらで緑点の色を変更できます*/
position: relative;
margin-bottom: 2px;
}
@media (max-width:880px){
.toc-list > li a {
margin-left: -10px;
}
.toc-list > li li a {
margin-left: -2em;
}
.toc-list > li li a::before {
left: 3px;
margin-bottom:1px;
}
}
.toc a:hover {
color: #333333;
text-decoration: underline;
}

/* おすすめアイテム全体 */
.pickup-section {
  background: #669933;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
}

/* 見出し */
.pickup-section h3 {
  margin-bottom: 12px;
  border-bottom: 2px solid #ffffff44;
  display: inline-block;
  padding-bottom: 4px;
}

/* カード全体の配置 */
.pickup-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* カードデザイン */
.pickup-card {
  width: 160px; /* ← 幅を少し細く調整（以前180px） */
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  overflow: hidden;
}

.pickup-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* 画像サイズ統一 */
.pickup-card img {
  width: 100%;
  height: 80px; /* 高さも少し抑えめに */
  object-fit: cover;
}

/* タイトル */
.pickup-card p {
  margin: 7px 0;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.2;
}

/* リンク */
.pickup-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding-bottom: 2px;
}

/* スマホ時レイアウト調整　*/
@media screen and (max-width: 600px){
  .pickup-items {
    justify-content: space-around;
    gap: 9px;
  }

  .pickup-card {
    width: 45%; /* 2列に並ぶ */
    max-width: 170px;
  }

  .pickup-card img {
    height: 100px;
  }

  .pickup-card p {
    font-size: 0.8rem;
  }

	.box-navi {
    display: none;
  }	
}

