@charset "utf-8";

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
address,
small,
blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

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

button {
  border: none;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

p {
  margin: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.container,
.col-md-4,
.col-md-6,
.col-md-8 {
  padding-left: 0;
  padding-right: 0;
}
.col-md-4,
.col-md-6,
.col-md-8 {
  flex-basis: auto !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  transition: all 0.3s ease;
}

iframe {
  border: none;
  height: 100%;
  width: 100%;
}

/* Variables */

:root {
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-noto-en: "Noto Sans", sans-serif;
  --font-lato: "Lato", sans-serif;

  --color-base: #363636;
  --color-green: #5fb38d;
  --color-l-green: #a2b469;
  --color-bg: #fafaf8;
}

/* Basic */

body {
  font-family: var(--font-noto-sans);
  background: #fff;
  color: var(--color-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.786; //25px
  letter-spacing: 0.06em; //0.84px
}
