/*
Theme Name: Hello Elementor Child (子テーマ)
Theme URI: https://yourdomain.com/
Description: Hello Elementor の子テーマです。カスタマイズはここに追加します。
Author: Your Name
Author URI: https://yourdomain.com/
Template: hello-elementor
Version: 1.0.0
*/

/* ------------------------------------------------------------------
 * 3カラム表示用のスタイル (教室案内ショートコード用)
 * ------------------------------------------------------------------ */

.subsite-class-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* アイテム間の間隔 */
}

/* 3カラム表示のスタイル */
.class-list-columns-3 .class-item {
    width: calc((100% - 40px) / 3); /* 3カラムとギャップを考慮した幅 */
    box-sizing: border-box;
    border: 1px solid #eee;
    padding: 15px;
}

.class-item h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.class-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}