@charset "UTF-8";
/******************************************
[reset]
******************************************/
*,
::before,
::after {
  position: relative;
  box-sizing: border-box;
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

[hidden],
template {
  display: none;
}

small {
  font-size: 80%;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

b, strong {
  font-weight: bolder;
}

img {
  border-style: none;
}

/*input,
button,
textarea,
select{
  outline: 0;
  border: 0px;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
button,
textarea,
select,
optgroup{
  font: inherit;
}

//↓:disabledが指定された要素ではカーソルが変わらないように
[disabled] {
  cursor: default;
}

//↓input[type="number"]のスピン（テキストボックスの右端に出る上下の矢印）非表示
input[type="number"] {
  -moz-appearance:textfield;
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}

//↓input[type="file"]のスタイル削除
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

//↓IE10以上でテキストボックスの右端にx印が出るので非表示
//参考：http://webdev.jp.net/ie-input-text-clear-button/
input::-ms-clear {
  visibility:hidden
}

//select
optgroup {
  font-weight: bold;
}

//↓IEでのselectのスタイル調整
select{
  &::-ms-expand {
    display: none;
  }
  &::-ms-value {
    color: currentColor;
  }
}

//textarea
//↓IE11のための設定
textarea {
  overflow: auto;
}

//button
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

button {
  background: none;
  overflow: visible;
}

//↓テキストをマウスなどで選択したときのスタイル
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}
*/
