/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

input[type=date],
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: #343434;
}

input[type=checkbox] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

/* ------ MDBリセット ------*/
/*select box*/
.select-arrow::after {
  /*display: inline-block;*/
  display: none !important;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: .3em solid rgba(0, 0, 0, 0)
}

.form-outline {
  --mdb-form-outline-select-notch-border-color: #3b72ca00;
  outline: none;
}

.form-outline .form-control {
  height: 36px;
  width: 100%;
  border: 1px solid #3E3E3E;
  border-radius: 5px;
}

.select-options-list .select-option-text {
  color: #343434 !important;
  font-weight: 500;
  font-size: 1.125rem;
}

.select-option-group-label {
  color: #006563 !important;
  font-weight: bold;
  font-size: 1.125rem;
}

.form-outline .form-control~.form-notch div {
  pointer-events: none;
  border: none;
  border-color: var(--mdb-form-control-border-color);
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0);
  transition: all .2s linear
}

/*dropdown*/
.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
  position: relative;
  text-align: start;
}

label {
  display: inherit;
}

@media (max-width: 960px) {
  label.slidemenu_open {
    display: flex;
    width: fit-content;
    min-width: 3.0625rem;
    height: fit-content;
    min-height: 3.0625rem;
    margin: 13px;
    background-color: #006563;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
    cursor: pointer;
  }
}

/* ------ MDBリセットここまで ------*/
