@charset "utf-8";

/******************************************************************************
 Default CSS Reset
******************************************************************************/
html,
body {
  position: relative;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  table-layout: fixed;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
img {
  vertical-align: bottom;
  /* chormeで画像のぼやけ回避 */
  -webkit-backface-visibility: hidden;
}
/* iOSでのデフォルトスタイルをリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/******************************************************************************
 General Setting
******************************************************************************/
html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}
body {
  /* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定 */
  font-size: 1.6em;
}
body {
  margin: 0 auto;
  padding: 0;
font-family:'Hiragino Sans','Hiragino Kaku Gothic ProN','Noto Sans JP','游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
color: #0a0a0a;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  font-weight: normal;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1070px) and (min-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

a {
  margin: 0;
  padding: 0;
  color: #0a0a0a;
font-family:'Hiragino Sans','Hiragino Kaku Gothic ProN','Noto Sans JP','游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: .3s;
}
@media screen and (max-width: 768px) {
a {
  transition: none;
}
}
a:focus,
*:focus {
  outline: none;
}
