﻿@charset "UTF-8";
/*----------------------------------------
  医療資格保有確認ページ
-----------------------------------------*/
#heldQualificationConfirmationModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 9999;
}

#heldQualificationConfirmationModalInput {
  position: relative;
  width: 700px;
  margin: 100px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Meiryo UI';
  font-size: large;
}

.textDesign {
  text-align: center;
  padding: 20px;
}

h1.textDesign {
  color: lightcoral;
  font-size: xx-large;
}

.selectList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  color: white;
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: #0d6efd;
  cursor: pointer;
  border-radius: 5px;
  min-width: 100px;
  text-align: center;
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}

  .btn:hover {
    background-color: #0a58ca;
  }

.btn-no {
  color: white !important;
  background-color: #dc3545;
}

  .btn-no:hover {
    background-color: #b02a37;
  }
