@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
*/

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

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

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

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

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.cat {
  display: block;
  padding: 16px;
  border: 2px solid #444;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #111;
  transition: 0.3s;
}

.cat .label {
  font-weight: bold;
  margin-bottom: 8px;
}

.cat .desc {
  font-size: 0.9em;
  opacity: 0.8;
}

.cat:hover {
  transform: translateY(-5px);
  border-color: #0ff;
  box-shadow: 0 0 12px #0ff;
}
