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

/* =======================================
Amelia
======================================= */
#amelia-container {
	margin-top: 0 !important;
}

button.c-iconBtn {
	display: none;
}

/* 月年の並び順を年月に入れ替え */
.am-advsc__header {
  display: flex;
}
.am-advsc__header .am-select-wrapper:nth-child(1) {
  order: 1; /* 月 */
}
.am-advsc__header .am-select-wrapper:nth-child(2) {
  order: 0; /* 年 */
}
.am-advsc__header .am-button-group {
  order: 2; /* ボタン */
}


/* 選択後の年月に年と月の表記を追加 */
.am-advsc__header .am-select-wrapper:nth-of-type(1) .el-select__selected-item.el-select__placeholder span::after {
  content: "月";
  margin-left: 2px;
}
.am-advsc__header .am-select-wrapper:nth-of-type(2) .el-select__selected-item.el-select__placeholder span::after {
  content: "年";
  margin-left: 2px;
}

/* リスト内に年月に年と月の表記を追加 */
ul[aria-label="year selection"] .el-select-dropdown__item span::after {
  content: "年";
  margin-left: 2px;
}
ul[aria-label="month selection"] .el-select-dropdown__item span::after {
  content: "月";
  margin-left: 2px;
}