@charset "UTF-8";

/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *
 * *********************************** */

/* Reset margin, padding, border
 * *********************************** */

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background:transparent;
  color: #333;
}

body , html {
  height: 100%;
}

/* Typography
 * *********************************** */

html {
  /* sets the base font to 10px for easier math */
  font-size: calc(100vw / 32);
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

* {
  font-family: inherit;
  font-size: inherit;
  font-family: 'Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  line-height: inherit;
  letter-spacing: 0.1rem;
  font-weight: 300;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a,
a:visited {
  color: inherit;
}


/* Layout
 * *********************************** */

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

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Elements
 * *********************************** */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

img,
video {
  max-width: 100%;
}

img {
  display: block;
  border-style: none;
}

input[type="submit"],
input[type="button"] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
}

input,
button,
textarea,
select {
  font: inherit;
}
