@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){
  /*必要ならばここにコードを書く*/
}
.ep-list{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.ep-item a{
  display:flex;
  align-items:flex-start;
  gap:30px;
  text-decoration:none;
  color:#333;
}

/* 画像サイズを統一（必要なら調整） */
.ep-thumb img{
  width:320px;
  height:200px;      /* ←揃えたいなら固定がおすすめ */
  object-fit:cover;  /* ←はみ出しをトリミングして統一 */
  display:block;
}

/* Cocoonの見出し装飾（枠/左棒）を消す */
.ep-item h3{
  border:none !important;
  box-shadow:none !important;
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
}
.ep-item h3::before,
.ep-item h3::after{
  content:none !important;
  display:none !important;
}

/* タイトルの見た目 */
.ep-text h3{
  font-size:18px;  /* ここを好みで */
  font-weight:700;
  line-height:1.2;
}