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

/* XO Event Calendar ------------------------- */
 
.xo-event-calendar {
    margin: 0 auto;
}
.xo-months {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.xo-month-wrap {
    width: 47%; //カレンダーの横幅の最大を47%とする
}
@media screen and (max-width: 599px) {
    .xo-event-calendar {
        width: 70%; //カレンダー全体の表示幅の最大を70%とする
    }
    .xo-months {
        display: block; //カレンダーを縦に並べる
    }
    .xo-month-wrap {
        width: 100%; //カレンダーの横幅の最大を100%とする
    }
}
