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

/* ギャラリーを2列固定 */
.wp-block-gallery.has-nested-images {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 16px;
}

/* 各画像を1マスに固定 */
.wp-block-gallery.has-nested-images figure.wp-block-image {
	width: 100% !important;
	margin: 0 !important;
}

/* 奇数枚でも最後だけ巨大化させない */
.wp-block-gallery.has-nested-images figure.wp-block-image:last-child:nth-child(odd) {
	grid-column: auto !important;
}