@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.0.8
*/

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

/* H2見出しの疑似要素をリセット*/

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

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

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

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

/* ナビゲーションボックス */
.nb-section { margin-bottom: 1.4rem; }
.nb-label {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 3px solid #1e73be;
  padding-left: 8px;
  color: #333;
}
.nb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .nb-grid { grid-template-columns: repeat(2, 1fr); }
}
.nb-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 13px 15px;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.nb-card:hover {
  border-color: #1e73be;
  background: #f0f6fc;
  text-decoration: none !important;
}
.nb-icon {
  font-size: 22px;
  color: #1e73be;
  flex-shrink: 0;
  line-height: 1;
}
.nb-text {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  line-height: 1.3;
  margin: 0;
}
.nb-sub {
  font-size: 12px;
  color: #666;
  margin: 3px 0 0;
}
.nb-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 0 0 1.4rem;
}