@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400");

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
}


/* base
========================================================================== */
html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #000;
}

article, section, div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.josefin {
  font-family: "Josefin Sans", sans-serif;
}

body > div[data-stt-ignore]:not(.foreign-notes) {
  display: none;
}

.foreign-notes {
  position: fixed;
  left: 20px;
  bottom: 20px;
  border: 1px dotted #FF0000;
  background-color: #fff;
  z-index: 1000;
  pointer-events: none;
  padding: 0.3em 0.5em;
  line-height: 1.5;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .foreign-notes {
    bottom: 95px;
    width: calc(100vw - 40px);
  }
}
.foreign-notes.disabled {
  opacity: 0;
}


/* utility
========================================================================== */
.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.left {
  float: left;
}

.right {
  float: right;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.pc-block {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
}

.pc-inline {
  display: inline;
}

@media screen and (max-width: 768px) {
  .pc-inline {
    display: none;
  }
}

.pc-inline-block {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .pc-inline-block {
    display: none;
  }
}

.pc-table {
  display: table;
}

@media screen and (max-width: 768px) {
  .pc-table {
    display: none;
  }
}

.sp-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.sp-inline {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-inline {
    display: inline;
  }
}

.sp-inline-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-inline-block {
    display: inline-block;
  }
}

.sp-table {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-table {
    display: table;
  }
}