/*献立ダウンロードポップアップ*/

.modal_meal_layout {
  width: 33.8vw;
  margin: 30px auto 0 auto;
  overflow: hidden;
}

.modal_meal_layout dl dt {
  float: left;
  display: table;
  width: 12%;
  margin: 0;
  vertical-align: middle;
  text-align: left;
  font-size: 1.5vw;
  line-height: 1.5em;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

.modal_meal_layout dl dd {
  float: left;
  width: 100%;
}

/*ファイル種類選択ボタン*/
.file_type_select {
  text-align: center;
  display: flex;
  align-items: center;
}

ul.file_type_select_btn {
  width: auto;
  display: inline-block;
}

ul.file_type_select_btn li {
  float: left;
}

.file_type_select_btn li input {
  height: 0;
  width: 0;
}

ul.file_type_select_btn li:last-child {
  margin: 0;
}

.file_type_select_btn li label {
  width: 11.8vw;
  height: 3.5vw;
  position: relative;
  padding: 8% 0 8% 0;
  display: block;
  float: left;
  text-align: center;
  font-size: 170%;
  border: 1px solid rgb(230, 230, 230);
  background-image: -moz-linear-gradient(to right, #EFEFEF, #fff);
  background-image: -webkit-linear-gradient(to right, #EFEFEF, #fff);
  background-image: -ms-linear-gradient(to right, #EFEFEF, #fff);
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  outline: none;
  justify-content: center; /* コンテンツを水平方向に中央揃え */
  color: #5F6872;
  content: "EXCEL";
  border-radius: 10px;
  margin: 0 0.5em 0 0.5em;
  right: 8px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  .file_type_select_btn li label{
    width: 11.8vw;
    font-size: 1.2vw;
    margin: 0 0 0 0.5em;
  }

  .file_type_select_btn li{
    margin-right: 0.7em;
  }
}

ul.file_type_select_btn li input[type="checkbox"]:checked + label {
  background: rgb(48, 196, 12);
  color: #fff;
  box-shadow: none;
}

.menu_download_form .modal_radio label.menu_download_excel::after {
  content: "EXCEL";
}

.menu_download_form .modal_radio label.menu_download_pdf::after {
  content: "PDF";
}

/*献立ファイル選択ボタン*/
.modal_radio label.menu_download_recipe::before {
  background-image: url("../img/ic/recipe.svg");
}

.modal_radio label.menu_download_recipe::after {
  content: "レシピ";
}

.modal_radio label.menu_download_food_value::before {
  background-image: url("../img/ic/food_value.svg");
}

.modal_radio label.menu_download_food_value::after {
  content: "栄養価";
}

.modal_radio label.menu_download_diet_book::before {
  background-image: url("../img/ic/diet_book.svg");
}

.modal_radio label.menu_download_diet_book::after {
  content: "検食簿";
}

.modal_radio label.menu_download_menu::before {
  background-image: url("../img/ic/meal_menu_list.svg");
}

.modal_radio label.menu_download_menu::after {
  content: "献立表";
}

.file_type_select,dl.menu_type_select{
  margin-bottom: 25px;
}
.file_type_select dt p,dl.menu_type_select dt p{
  display: table-cell;
  vertical-align: middle;
}

dl.menu_type_select {
  clear: both;
  width: 100%;
  display: flex;
  align-items: center;
}
dl.menu_type_select dt {
  display: table;
  margin: 0 0 0 0;
}

ul.menu_type_select_btn {
  margin: 0;
  width: 100%;
}

ul.menu_type_select_btn li {
  float: left;
  width: 25%
}

ul.menu_type_select_btn li:last-child {
  margin: 0;
  width: 25%;
}

.menu_type_select_btn li p input {
  height: 0;
  width: 0;
}

.modal_radio input[type="checkbox"]:checked + label {
  background: rgb(48, 196, 12);
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
}

/*ダウンロードボタン*/
button.btn_modal_download {
  clear: both;
  width: 5.9vw;
  height: 5.9vw;
  border-radius: 100%;
  border: solid 1px rgb(34, 191, 135);
  background-image: -moz-linear-gradient(-135deg, rgb(45, 214, 4) 0%, rgb(4, 190, 144) 100%);
  background-image: -webkit-linear-gradient(-135deg, rgb(45, 214, 4) 0%, rgb(4, 190, 144) 100%);
  background-image: -ms-linear-gradient(-135deg, rgb(45, 214, 4) 0%, rgb(4, 190, 144) 100%);
  box-shadow: 0px 2px 4px 0px rgba(196, 196, 196, 0.4);
  opacity: 1;
  position: relative;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0, 1.1, 1, 1);
}

button.btn_modal_download::before {
  content: "";
  background-image: url("../img/ic/download_white.svg");
  width: 5.9vw;
  height: 5.9vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

button.btn_modal_download:disabled {
  opacity: 0.2;
  border: solid 1px #9E9E9E;
  background-image: -moz-linear-gradient(-135deg, rgb(45, 214, 4) 0%, rgb(4, 190, 144) 100%);
  background-image: -webkit-linear-gradient(-135deg, #9E9E9E 0%, rgb(41, 41, 41) 100%);
}

.modal_download_notes {
  font-size: 1.2vw;
  color: #5d686c;
}
