@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* === 画像をトリミングせず枠内に収める（縦長/横長どちらも見切れない） === */

/* サムネ枠に高さ（比率）を与える：ここがないと contain が効きにくい */
.p-postList__thumb,
.c-postThumb {
  aspect-ratio: 16 / 9;  /* 好みで 1/1 や 3/4 に変更OK */
  overflow: hidden;
  background: #fff;      /* 余白の背景色。不要なら消してOK */
}

/* 画像は切らずに縮小して枠内に収める */
.p-postList__thumb img,
.c-postThumb img,
.c-postThumb__img,
.wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ←これが「トリミングしない」本体 */
  object-position: center;
}