@charset "UTF-8";
/* end MacIE5 */
/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
body {
    -webkit-font-smoothing: antialiased;
    color: #111;
    line-height: 1;
    font-size: 16px; /* ここに16pxを追加 */
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.font-type2 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: #111;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input {
  border: 0;
  margin: 0;
  padding: 0;
}

p {
  font-size: 14px;
  line-height: 2.4;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

a,
a:before,
a:after,
input {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}