@charset "UTF-8";
/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #1d1d1d;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  line-height: 2;
}

a:link {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000 !important;
}
a:active {
  color: #000 !important;
}
a[target="_blank"]:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cg%20data-name%3D%22l2%22%3E%3Cg%20data-name%3D%22l1%22%3E%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23f8b600%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222px%22%20class%3D%22cls-1%22%20points%3D%2219%2015%2019%2023%201%2023%201%205%209%205%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23f8b600%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222px%22%20class%3D%22cls-1%22%20d%3D%22M14%2C1h9v9M11%2C13%2C22%2C2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 7px;
}

input[type="text"][disabled] {
  cursor: default;
}
input[type="text"][disabled]:hover {
  border: 1px solid #ddd;
}

h1, .h1 {
  padding: 0;
}

select {
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #DDD;
  border-radius: 4px;
  padding: 0 30px 0 10px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%3E%3Cimage%20id%3D%22%22%20data-name%3D%22%22%20width%3D%2210%22%20height%3D%227%22%20xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAAp0lEQVQYlU3PP2pCQRDH8c%2BqsAhi6y3MAZLS5vWJjaewEIRAqpQ5Q8o01vrAIpU3yClSpRDUV%2BiGlX3iwDD%2FvvxmJpw2fnDBU6zS3p01dRhgh14HEWN8NnUI92Du4QH9DD7jUOK8JZo65PwFR0xDSik3M7TCGZNyyje6mMUqfV3BovCOV%2FwW0RE%2BYpUWucirW3vDugDZt1i2w5tiUR22X%2BIxVunvOsA%2FuRAwRWmGccgAAAAASUVORK5CYII%3D%22%2F%3E%3C%2Fsvg%3E") no-repeat right 8px top 50%;
  font-size: 12px;
  height: 28px;
}
select[disabled] {
  background-color: #eee;
  color: #666;
}
select[disabled]:hover {
  border-color: #ddd;
  cursor: default;
}

select::-ms-expand {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  left: -999999px;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
  display: flex;
  align-items: center;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  content: '';
  display: inline-block;
}
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  display: inline-block;
}

input[type="checkbox"] + label:before {
  width: 18px;
  height: 18px;
  border: 1px solid #DDD;
  border-radius: 2px;
  margin-right: 8px;
  background: #fff;
}
input[type="checkbox"]:checked + label:after {
  left: 5px;
  top: calc(50% - 7px);
  width: 7px;
  height: 11px;
  border-right: 3px solid #f8b600;
  border-bottom: 3px solid #f8b600;
  transform: rotate(45deg);
}

input[type="radio"] + label:before {
  width: 16px;
  height: 16px;
  border: 1px solid #DDD;
  border-radius: 100%;
  margin-right: 8px;
}
input[type="radio"]:checked + label:after {
  left: 3px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #f8b600;
  border-radius: 100%;
}

label.inputWrap {
  position: relative;
  display: flex;
  align-items: center;
}
label.inputWrap:before {
  content: '';
  display: inline-block;
}
label.inputWrap.checked:after {
  content: '';
  position: absolute;
  display: inline-block;
}
label.inputWrap.checkboxWrap:before {
  width: 18px;
  height: 18px;
  border: 1px solid #DDD;
  border-radius: 2px;
  margin-right: 8px;
  background: #fff;
}
label.inputWrap.checkboxWrap.checked:after {
  left: 5px;
  top: calc(50% - 7px);
  width: 7px;
  height: 11px;
  border-right: 3px solid #f8b600;
  border-bottom: 3px solid #f8b600;
  transform: rotate(45deg);
}
label.inputWrap.radioWrap:before {
  width: 16px;
  height: 16px;
  border: 1px solid #DDD;
  border-radius: 100%;
  margin-right: 8px;
}
label.inputWrap.radioWrap.checked:after {
  left: 3px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #f8b600;
  border-radius: 100%;
}

/* Edge */
@supports (-ms-ime-align: auto) {
  input[type="checkbox"],
  input[type="radio"] {
    position: absolute;
    left: -999999px;
  }
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
}
input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/*# sourceMappingURL=base.css.map */
