@charset "UTF-8";
/*----------------------------------------------------------------
reset
----------------------------------------------------------------*/
/*base*/
* {
  box-sizing: border-box;
}

body,
div,
figure,
pre,
p,
blockquote,
form,
fieldset,
input,
textarea,
select,
option,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
tr,
embed,
object,
a,
img {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

/*font*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-style: normal;
  font-weight: normal;
}

/*others*/
table {
  border-spacing: 0;
}

* html table {
  border-collapse: collapse;
}

*:first-child + html table {
  border-collapse: collapse;
}

th,
td {
  vertical-align: middle;
  border-collapse: collapse;
}

table,
th,
td,
tr,
img {
  border: 0;
}

img {
  vertical-align: bottom;
}

q:before,
q:after {
  content: "";
}

ul,
ol {
  list-style: none;
  list-style-type: none;
}

strong,
em {
  font-style: normal;
  font-weight: inherit;
}

/* ------------------------------------------------------------------base*/
html {
  /*メイリオベース*/
  font: 62.5%/1.7 "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*明朝ベース*/
  /* font: 62.5%/1.7 "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
}

/*body*/
body {
  height: 100%;
  text-align: center;
  word-break: break-all;
  font-size: 1.4rem;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

figure {
  padding: 0;
  margin: 0;
}

svg:where(:not([fill])) {
  fill: currentColor;
}

/*link*/
a {
  color: rgba(var(--a_tx),1);
  text-decoration: underline;
  transition: 0.2s;
}

a img {
  border-style: none;
}

a:visited {
  color: rgba(var(--a_visited),1);
}

a:hover {
  color: rgba(var(--a_hover),1);
}

/*font-size*/
h1,
h2,
h3,
h4,
h5 {
  font-size:var(--font_base);
  line-height: 1.4;
}

p {
  font-size:var(--font_base);
  line-height: 1.6;
}

li,
dt,
dd {
  font-size:var(--font_base);
  line-height: 1.6;
}

table th,
table td {
  font-size:var(--font_base);
  line-height: 1.6;
}
