/* ====================================================
common layout style
==================================================== */
/* ====================================================
reset style
==================================================== */
body {
  line-height: 1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

html,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

table {
  font-size: 100%;
}

ul {
  list-style-type: none;
}

figure {
  margin: 0;
  padding: 0;
}

/* ====================================================
base
==================================================== */
/*--------------------------------------------
display
--------------------------------------------*/
.device_pc {
  display: block !important;
}
@media print, screen and (max-width: 768px) {
  .device_pc {
    display: none !important;
  }
}

.device_sp {
  display: none !important;
}
@media print, screen and (max-width: 768px) {
  .device_sp {
    display: block !important;
  }
}

/* ====================================================
base style
==================================================== */
html {
  font-size: 62.5%;
  font-size: 0.52vw;
}
@media print, screen and (max-width: 768px) {
  html {
    font-size: 2.666vw;
  }
}

body {
  display: none;
  opacity: 1 !important;
  color: #000;
  font-size: 1.8rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.7;
  text-align: justify;
  overflow: auto;
  overflow-x: hidden;
  font-weight: 400;
  color: #000;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: #000000;
  cursor: pointer;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

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

a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

* {
  box-sizing: border-box;
}

figure {
  width: 100%;
}

::placeholder {
  color: #e4e4e4;
}

em {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

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

ol {
  text-indent: -1em;
  padding-left: 1em;
}
ol > li {
  margin-top: 1rem;
}

sup {
  font-size: 70%;
  vertical-align: super;
}

sub {
  font-size: 70%;
  vertical-align: sub;
}

.error404 {
  padding-top: 15rem;
}
