@charset "UTF-8";

:root {
  -webkit-font-smoothing: antialiased;
  --base-size: 62.5%;
  --clr-text: #39444e;

  --ff-sans: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  --fz: 1.4rem;
  --ls: normal;
  --lh: 2;
}

@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
body {
  background-color: #fff;
}

.ui-widget,
body {
  font: inherit;
  font-family: var(--ff-sans);
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
  letter-spacing: var(--ls);
  font-feature-settings: "pkna" 1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
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-size: 100%;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

b,
strong,
.bold {
  font-weight: 700;
}

sup {
  vertical-align: super;
  font-size: 1rem;
}

sub {
  vertical-align: baseline;
  font-size: 1rem;
}

img {
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

html {
  line-height: 1;
  font-size: var(--base-size);
}

#stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-width: 320px;
  font-size: var(--fz);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 2;
  color: var(--clr-text);
}
@media (width < 768px) {
  .pc {
    display: none;
  }
  .pc.important {
    display: none !important;
  }
}
@media (768px <= width) {
  .sp {
    display: none;
  }
  .sp.important {
    display: none !important;
  }
}

svg {
  -webkit-backface-visibility: hidden;
}

.kado {
  margin: 0 auto;
  text-align: center;
  overflow-x: scroll;
}

@media (768px <= width) {
  .kado {
    overflow-x: visible;
  }
}

table {
  width: 940px;
  margin: 0 auto;
  tr {
  }
  th,
  td {
    padding: 0.75rem 2rem;
  }
  th {
    background-color: #3b91c6;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;

    & + th {
      border-left: 1px solid #fff;
    }
  }

  td {
    font-size: 1.6rem;
    font-weight: 700;
    border: 1px solid #ccc;
    border-top: none;

    img {
      margin-right: 1rem;
    }
  }
}

[class^="icon"] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1.6rem;
  height: 1.6rem;
  background: center no-repeat;
  margin-right: 0.4rem;
}

.icon-num {
  background-image: url(../image/icon-num.svg);
}
.icon-type {
  background-image: url(../image/icon-type.svg);
}
.icon-status {
  background-image: url(../image/icon-status.svg);
}
.icon-time {
  background-image: url(../image/icon-time.svg);
}
.icon-etc {
  background-image: url(../image/icon-etc.svg);
}
