@charset "UTF-8";
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* ==========================================================================
Reset CSS
========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* Original Foundation Styles =================================*/
html, body {
  color: #222;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  height: 100%;
  min-width: auto;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  word-break: normal;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body.win {
  font-weight: 500;
}

body.scrollLock {
  position: fixed;
  width: 100%;
  height: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

a {
  cursor: pointer;
  color: #222;
  text-decoration: none;
  transition: opacity 0.4s;
  text-underline-offset: 0.5ex;
}
.pc #wrapper a:hover {
  opacity: 0.7;
  transition: opacity 0s;
}

span {
  text-underline-offset: 0.5ex;
}

button {
  cursor: pointer;
}

/*  ---------------------------
		Chart_page
---------------------------  */
.p-chart {
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 821px) {
  .p-chart {
    font-size: 16px;
  }
}

.p-chart__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  flex-wrap: wrap;
}
@media screen and (min-width: 821px) {
  .p-chart__wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}

.p-chart__box h4 {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 821px) {
  .p-chart__box h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 821px) {
  .p-chart__box {
    width: 33.33%;
    min-width: 345px;
  }
}
.p-chart__box > div {
  min-height: 250px;
}