@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){
  /*必要ならばここにコードを書く*/
}
/*------------------プロフィールのキャラクター設定--------------------------------*/
.character {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
}

.character-img {
  flex: 0 0 200px; /* PC時の画像サイズ固定 */
  max-width: 100%;
}

.character-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.character-desc {
  flex: 1;
  min-width: 250px;
  line-height: 1.6;
}
/*ーーーーーーーーーーーーーーーーーフォルダーネームを非表示にする（CSSで簡単）*/
/* カテゴリータイトルとその余白を削除 */
#archive-title {
  display: none !important;
}
.main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.sidebar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/*ーーーーーーーーーーーーーーーーー*/
