/* 
 * common.css
 * コンポーネント以外で使用する共通スタイル
 */
body,
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Zen Maru Gothic', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #006298;
}
html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
}

._none {
  display: none !important;
}

.error {
  display: block;
  margin-top: 5px;
  color: #e32023;
  font-size: 12px;
}

.form-select {
  position: relative;
}
.form-select::after {
  content: '';
  position: absolute;
  top: 1px;
  right: 25.2%;
  width: 43px;
  height: 41px;
  background-color: #ccc;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-image: url('../../img/arrow.png');
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 16px center;
  pointer-events: none;
}
