/*! SMP - NIFTY GAME Styleseet *//*
 *  Title: MUSUBI
 *  Version: 0.0.0
 *  Type: Web Design Framework
 *  License: CC0 1.0 Public Domain
 *  GitHub: https://github.com/qrac/musubi
 *  ---
 *  Author: Qrac
 *  Author Web URL: https://qrac.jp
 *  Author Contact: https://twitter.com/Qrac_jp
 */
/*
 *  Title: Shitaji.CSS
 *  Version: 2.0.0
 *  Type: Reset CSS
 *  License: CC0 1.0 Public Domain
 *  GitHub: https://github.com/qrac/shitajicss
 *  ---
 *  Author: Qrac
 *  Author WebSite: https://qrac.jp
 *  Author Contact: https://twitter.com/Qrac_jp
 */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: inherit;
  text-decoration: none;
  font: inherit;
  font-size: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
  list-style: none;
  vertical-align: baseline;
  background: transparent;
  background-repeat: no-repeat;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

*::before,
*::after {
  box-sizing: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  background-repeat: no-repeat;
}

html {
  font-family: sans-serif;
  box-sizing: border-box;
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template,
[hidden] {
  display: none;
}

hr {
  height: 0;
  overflow: visible;
}

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

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

svg {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  -webkit-text-decoration-skip: objects;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
  resize: vertical;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-cancel-button,
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden][aria-hidden="false"] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

blockquote,
q {
  quotes: none;
}

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

body {
  color: rgba(0, 0, 0, 0.87);
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YakuHanJP, Meiryo, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.6;
}

.section > .inner {
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {
  .section > .inner {
    width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .section > .inner {
    width: 720px;
  }
}

@media screen and (min-width: 992px) {
  .section > .inner {
    width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .section > .inner {
    width: 1140px;
  }
}

.section > .inner > .tab {
  margin: 0 -16px;
}

@media screen and (min-width: 576px) {
  .section > .inner > .tab {
    margin: 0;
  }
}

.area.is-group:not(:last-child) {
  margin: 0 0 36px;
}

.area.is-group-child:not(:last-child) {
  margin: 0 0 12px;
}

.grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.grid.is-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid.is-bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.grid.is-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid.is-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.grid.is-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grid.is-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.grid.is-space-xxl {
  margin: -24px;
}

.grid.is-space-xxl > .col {
  padding: 24px;
}

.grid.is-space-xxl:not(:first-child) {
  padding: 24px 0 0;
}

.grid.is-space-xl {
  margin: -20px;
}

.grid.is-space-xl > .col {
  padding: 20px;
}

.grid.is-space-xl:not(:first-child) {
  padding: 20px 0 0;
}

.grid.is-space-lg {
  margin: -16px;
}

.grid.is-space-lg > .col {
  padding: 16px;
}

.grid.is-space-lg:not(:first-child) {
  padding: 16px 0 0;
}

.grid.is-space-md {
  margin: -12px;
}

.grid.is-space-md > .col {
  padding: 12px;
}

.grid.is-space-md:not(:first-child) {
  padding: 12px 0 0;
}

.grid.is-space-sm {
  margin: -8px;
}

.grid.is-space-sm > .col {
  padding: 8px;
}

.grid.is-space-sm:not(:first-child) {
  padding: 8px 0 0;
}

.grid.is-space-xs {
  margin: -4px;
}

.grid.is-space-xs > .col {
  padding: 4px;
}

.grid.is-space-xs:not(:first-child) {
  padding: 4px 0 0;
}

.grid.is-space-xxs {
  margin: -2px;
}

.grid.is-space-xxs > .col {
  padding: 2px;
}

.grid.is-space-xxs:not(:first-child) {
  padding: 2px 0 0;
}

.col.is-stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.col.is-xs-0 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  max-width: 100%;
}

.col.is-xs-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col.is-xs-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col.is-xs-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col.is-xs-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col.is-xs-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col.is-xs-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col.is-xs-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col.is-xs-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col.is-xs-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col.is-xs-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col.is-xs-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col.is-xs-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (min-width: 576px) {
  .col.is-sm-0 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    max-width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 576px) {
  .col.is-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-0 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 768px) {
  .col.is-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-0 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 992px) {
  .col.is-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-0 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 1200px) {
  .col.is-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (max-width: 991px) {
  .col.is-touch-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media all and (orientation: landscape) {
  .col.is-yoko-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media all and (orientation: portrait) {
  .col.is-tate-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

.text.is-xxl {
  font-size: 200%;
}

.text.is-xl {
  font-size: 150%;
}

.text.is-lg {
  font-size: 125%;
}

.text.is-md {
  font-size: 100%;
}

.text.is-sm {
  font-size: 87.5%;
}

.text.is-xs {
  font-size: 75%;
}

.text.is-xxs {
  font-size: 62.5%;
}

.text.is-strong {
  font-weight: 700;
}

.text.is-small {
  font-size: 80%;
}

.text.is-italic {
  font-style: italic;
}

.text.is-delete {
  text-decoration: line-through;
}

.text.is-left {
  text-align: left;
}

.text.is-center {
  text-align: center;
}

.text.is-right {
  text-align: right;
}

.text.is-white {
  color: #ffffff;
}

.text.is-code {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, serif;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 87.5%;
  border-radius: 2px;
  padding: 0.125em 0.3125em;
  margin: 0 0.125em;
}

.text.is-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text .fa,
.text .material-icons,
.text .im {
  font-size: inherit;
}

.text .fa.is-xxl,
.text .material-icons.is-xxl,
.text .im.is-xxl {
  font-size: 200%;
}

.text .fa.is-xl,
.text .material-icons.is-xl,
.text .im.is-xl {
  font-size: 150%;
}

.text .fa.is-lg,
.text .material-icons.is-lg,
.text .im.is-lg {
  font-size: 125%;
}

.text .fa.is-md,
.text .material-icons.is-md,
.text .im.is-md {
  font-size: 100%;
}

.text .fa.is-sm,
.text .material-icons.is-sm,
.text .im.is-sm {
  font-size: 87.5%;
}

.text .fa.is-xs,
.text .material-icons.is-xs,
.text .im.is-xs {
  font-size: 75%;
}

.text .fa.is-xxs,
.text .material-icons.is-xxs,
.text .im.is-xxs {
  font-size: 62.5%;
}

.text .fa.is-small,
.text .material-icons.is-small,
.text .im.is-small {
  font-size: 80%;
}

.text .fa.is-left,
.text .material-icons.is-left,
.text .im.is-left {
  text-align: left;
}

.text .fa.is-center,
.text .material-icons.is-center,
.text .im.is-center {
  text-align: center;
}

.text .fa.is-right,
.text .material-icons.is-right,
.text .im.is-right {
  text-align: right;
}

.text .fa.is-white,
.text .material-icons.is-white,
.text .im.is-white {
  color: #ffffff;
}

.text .fa + *,
.text .material-icons + *,
.text .im + *,
.text * + .fa,
.text * + .material-icons,
.text * + .im {
  margin: 0 0 0 0.25em;
}

.text.is-link {
  cursor: pointer;
  color: #1cb4c7;
  border-bottom: 1px dotted;
}

.text.is-link:hover, .text.is-link:active {
  color: #199fb1;
  border-bottom-color: transparent;
}

.text.is-link.is-white,
.text.is-white .text.is-link {
  color: #8ee4ef;
}

.text.is-link.is-white:hover, .text.is-link.is-white:active,
.text.is-white .text.is-link:hover,
.text.is-white .text.is-link:active {
  color: #1cb4c7;
}

.heading {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.heading.is-xxl, .heading.is-xl, .heading.is-lg, .heading.is-md, .heading.is-sm, .heading.is-xs {
  margin-bottom: 0.5em;
}

.heading.is-xxl {
  font-size: 200%;
  line-height: 1.2;
}

.heading.is-xl {
  font-size: 150%;
  line-height: 1.3;
}

.heading.is-lg {
  font-size: 125%;
  line-height: 1.4;
}

.heading.is-md {
  font-size: 100%;
}

.heading.is-sm {
  font-size: 87.5%;
}

.heading.is-xs {
  font-size: 75%;
}

.heading.is-strong {
  font-weight: 700;
}

.heading.is-italic {
  font-style: italic;
}

.heading.is-delete {
  text-decoration: line-through;
}

.heading.is-left {
  text-align: left;
}

.heading.is-center {
  text-align: center;
}

.heading.is-right {
  text-align: right;
}

.heading.is-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading.is-white {
  color: #ffffff;
}

.heading .fa,
.heading .material-icons,
.heading .im {
  font-size: inherit;
}

.heading .fa.is-xxl,
.heading .material-icons.is-xxl,
.heading .im.is-xxl {
  font-size: 200%;
}

.heading .fa.is-xl,
.heading .material-icons.is-xl,
.heading .im.is-xl {
  font-size: 150%;
}

.heading .fa.is-lg,
.heading .material-icons.is-lg,
.heading .im.is-lg {
  font-size: 125%;
}

.heading .fa.is-md,
.heading .material-icons.is-md,
.heading .im.is-md {
  font-size: 100%;
}

.heading .fa.is-sm,
.heading .material-icons.is-sm,
.heading .im.is-sm {
  font-size: 87.5%;
}

.heading .fa.is-xs,
.heading .material-icons.is-xs,
.heading .im.is-xs {
  font-size: 75%;
}

.heading .fa.is-xxs,
.heading .material-icons.is-xxs,
.heading .im.is-xxs {
  font-size: 62.5%;
}

.heading .fa.is-small,
.heading .material-icons.is-small,
.heading .im.is-small {
  font-size: 80%;
}

.heading .fa.is-left,
.heading .material-icons.is-left,
.heading .im.is-left {
  text-align: left;
}

.heading .fa.is-center,
.heading .material-icons.is-center,
.heading .im.is-center {
  text-align: center;
}

.heading .fa.is-right,
.heading .material-icons.is-right,
.heading .im.is-right {
  text-align: right;
}

.heading .fa.is-white,
.heading .material-icons.is-white,
.heading .im.is-white {
  color: #ffffff;
}

.heading .fa + *,
.heading .material-icons + *,
.heading .im + *,
.heading * + .fa,
.heading * + .material-icons,
.heading * + .im {
  margin: 0 0 0 0.25em;
}

.heading > .text:not(.is-ellipsis) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.list {
  margin-left: 1.42em;
}

.list > .list-item {
  display: list-item;
  margin-bottom: 0.21em;
}

.list.is-disc > .list-item {
  list-style: disc outside;
}

.list.is-decimal > .list-item {
  list-style: decimal outside;
}

.list.is-xxl,
.list-item.is-xxl {
  font-size: 200%;
}

.list.is-xl,
.list-item.is-xl {
  font-size: 150%;
}

.list.is-lg,
.list-item.is-lg {
  font-size: 125%;
}

.list.is-md,
.list-item.is-md {
  font-size: 100%;
}

.list.is-sm,
.list-item.is-sm {
  font-size: 87.5%;
}

.list.is-xs,
.list-item.is-xs {
  font-size: 75%;
}

.list.is-xxs,
.list-item.is-xxs {
  font-size: 62.5%;
}

.list.is-strong,
.list-item.is-strong {
  font-weight: 700;
}

.list.is-left,
.list-item.is-left {
  text-align: left;
}

.list.is-center,
.list-item.is-center {
  text-align: center;
}

.list.is-right,
.list-item.is-right {
  text-align: right;
}

.list.is-white,
.list-item.is-white {
  color: #ffffff;
}

.tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  overflow-x: auto;
}

.tab.is-xxl {
  font-size: 200%;
}

.tab.is-xl {
  font-size: 150%;
}

.tab.is-lg {
  font-size: 125%;
}

.tab.is-md {
  font-size: 100%;
}

.tab.is-sm {
  font-size: 87.5%;
}

.tab.is-xs {
  font-size: 75%;
}

.tab.is-xxs {
  font-size: 62.5%;
}

.tab.is-white {
  color: rgba(255, 255, 255, 0.7);
}

.tab.is-white > .tab-btn:hover {
  color: #ffffff;
}

.tab.is-white > .tab-btn.is-current {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.tab > .tab-btn {
  position: relative;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4em;
  line-height: 1;
  padding: 0 1em;
}

.tab > .tab-btn:not(.is-current) {
  cursor: pointer;
}

.tab > .tab-btn.is-current {
  border-bottom: 4px solid;
}

.btn-set {
  margin: -2px;
}

.btn-set.is-xxl {
  font-size: 200%;
}

.btn-set.is-xl {
  font-size: 150%;
}

.btn-set.is-lg {
  font-size: 125%;
}

.btn-set.is-md {
  font-size: 100%;
}

.btn-set.is-sm {
  font-size: 87.5%;
}

.btn-set.is-xs {
  font-size: 75%;
}

.btn-set.is-xxs {
  font-size: 62.5%;
}

.btn-set > .btn {
  margin: 2px;
}

.btn-set > .btn-bar {
  margin: 2px;
}

.btn {
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
  height: 2.5em;
  line-height: 1;
  padding: 0 1em;
  border-radius: 2px;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.btn.is-xxl {
  font-size: 200%;
}

.btn.is-xl {
  font-size: 150%;
}

.btn.is-lg {
  font-size: 125%;
}

.btn.is-md {
  font-size: 100%;
}

.btn.is-sm {
  font-size: 87.5%;
}

.btn.is-xs {
  font-size: 75%;
}

.btn.is-xxs {
  font-size: 62.5%;
}

.btn.is-strong {
  font-weight: 700;
}

.btn.is-round {
  border-radius: 1.25em;
}

.btn.is-circle {
  width: 2.5em;
  padding: 0;
  border-radius: 1.25em;
}

.btn.is-disable {
  cursor: default;
}

.btn.is-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.btn .fa,
.btn .material-icons,
.btn .im {
  font-size: inherit;
}

.btn .fa + *,
.btn .material-icons + *,
.btn .im + *,
.btn * + .fa,
.btn * + .material-icons,
.btn * + .im {
  margin: 0 0 0 0.25em;
}

.btn.is-floating-1 {
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

.btn.is-floating-1:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.btn.is-floating-1.is-disable:active {
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

.btn.is-floating-2 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.btn.is-floating-2:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.btn.is-floating-2.is-disable, .btn.is-floating-2.is-disable:active {
  box-shadow: none;
}

.btn.is-floating-3 {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24);
}

.btn.is-floating-3:hover, .btn.is-floating-3:active {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.24);
}

.btn.is-floating-3.is-disable, .btn.is-floating-3.is-disable:hover, .btn.is-floating-3.is-disable:active {
  box-shadow: none;
}

.btn.is-plain,
.btn.is-flat {
  background: #eeeeee;
  border: 1px solid transparent;
}

.btn.is-plain:hover,
.btn.is-flat:hover {
  background: #e1e1e1;
}

.btn.is-plain:active,
.btn.is-flat:active {
  background: #d4d4d4;
}

.btn.is-plain.is-primary,
.btn.is-flat.is-primary {
  color: #ffffff;
  background: #1cb4c7;
}

.btn.is-plain.is-primary:hover,
.btn.is-flat.is-primary:hover {
  background: #199fb1;
}

.btn.is-plain.is-primary:active,
.btn.is-flat.is-primary:active {
  background: #168b9a;
}

.btn.is-plain.is-success,
.btn.is-flat.is-success {
  color: #ffffff;
  background: #26b260;
}

.btn.is-plain.is-success:hover,
.btn.is-flat.is-success:hover {
  background: #219d54;
}

.btn.is-plain.is-success:active,
.btn.is-flat.is-success:active {
  background: #1d8849;
}

.btn.is-plain.is-danger,
.btn.is-flat.is-danger {
  color: #ffffff;
  background: #dc665d;
}

.btn.is-plain.is-danger:hover,
.btn.is-flat.is-danger:hover {
  background: #d85248;
}

.btn.is-plain.is-danger:active,
.btn.is-flat.is-danger:active {
  background: #d33e33;
}

.btn.is-plain.is-disable,
.btn.is-plain.is-disable:hover,
.btn.is-plain.is-disable:active,
.btn.is-flat.is-disable,
.btn.is-flat.is-disable:hover,
.btn.is-flat.is-disable:active {
  color: rgba(0, 0, 0, 0.26);
  background: #bdbdbd;
}

.btn.is-flat {
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: none;
  transition: none;
}

.btn.is-flat:hover {
  top: 1px;
  height: -webkit-calc(2.5em - 1px);
  height: calc(2.5em - 1px);
  border-bottom-width: 2px;
}

.btn.is-flat:active {
  top: 2px;
  height: -webkit-calc(2.5em - 2px);
  height: calc(2.5em - 2px);
  border-bottom: 1px solid transparent;
}

.btn.is-flat.is-disable, .btn.is-flat.is-disable:hover, .btn.is-flat.is-disable:active {
  top: 0;
  border-bottom: 3px solid rgba(0, 0, 0, 0.05);
}

.btn.is-mist {
  border: 1px solid transparent;
}

.btn.is-mist:hover, .btn.is-mist:active {
  background: rgba(0, 0, 0, 0.05);
}

.btn.is-mist.is-primary {
  color: #1cb4c7;
}

.btn.is-mist.is-success {
  color: #26b260;
}

.btn.is-mist.is-danger {
  color: #dc665d;
}

.btn.is-mist.is-disable,
.btn.is-mist.is-disable:hover,
.btn.is-mist.is-disable:active {
  color: rgba(0, 0, 0, 0.26);
  background: none;
}

.btn.is-outline {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn.is-outline:hover {
  background: #f2f2f2;
}

.btn.is-outline:active {
  background: #e6e6e6;
}

.btn.is-outline.is-primary {
  color: #1cb4c7;
  border-color: #1cb4c7;
}

.btn.is-outline.is-primary:hover {
  background: #1cb4c7;
}

.btn.is-outline.is-primary:active {
  background: #199fb1;
}

.btn.is-outline.is-success {
  color: #26b260;
  border-color: #26b260;
}

.btn.is-outline.is-success:hover {
  background: #26b260;
}

.btn.is-outline.is-success:active {
  background: #219d54;
}

.btn.is-outline.is-danger {
  color: #dc665d;
  border-color: #dc665d;
}

.btn.is-outline.is-danger:hover {
  background: #dc665d;
}

.btn.is-outline.is-danger:active {
  background: #d85248;
}

.btn.is-outline.is-primary:hover,
.btn.is-outline.is-success:hover,
.btn.is-outline.is-danger:hover,
.btn.is-outline.is-primary:active,
.btn.is-outline.is-success:active,
.btn.is-outline.is-danger:active {
  color: #ffffff;
  border-color: transparent;
}

.btn.is-outline.is-disable,
.btn.is-outline.is-disable:hover,
.btn.is-outline.is-disable:active {
  color: rgba(0, 0, 0, 0.26);
  background-color: rgba(0, 0, 0, 0.26);
}

.btn.is-ghost {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}

.btn.is-ghost:hover {
  color: rgba(0, 0, 0, 0.87);
  background: #ffffff;
}

.btn.is-ghost:active {
  background: #f2f2f2;
}

.btn.is-ghost.is-primary {
  color: #8ee4ef;
  border-color: #8ee4ef;
}

.btn.is-ghost.is-primary:hover {
  background: #1cb4c7;
}

.btn.is-ghost.is-primary:active {
  background: #199fb1;
}

.btn.is-ghost.is-success {
  color: #8ae6b0;
  border-color: #8ae6b0;
}

.btn.is-ghost.is-success:hover {
  background: #26b260;
}

.btn.is-ghost.is-success:active {
  background: #219d54;
}

.btn.is-ghost.is-danger {
  color: #f7dddb;
  border-color: #f7dddb;
}

.btn.is-ghost.is-danger:hover {
  background: #dc665d;
}

.btn.is-ghost.is-danger:active {
  background: #d85248;
}

.btn.is-ghost.is-primary:hover,
.btn.is-ghost.is-success:hover,
.btn.is-ghost.is-danger:hover,
.btn.is-ghost.is-primary:active,
.btn.is-ghost.is-success:active,
.btn.is-ghost.is-danger:active {
  color: #ffffff;
  border-color: transparent;
}

.btn.is-ghost.is-disable,
.btn.is-ghost.is-disable:hover,
.btn.is-ghost.is-disable:active {
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-bar {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  max-width: 100%;
}

.btn-bar.is-xxl {
  font-size: 200%;
}

.btn-bar.is-xl {
  font-size: 150%;
}

.btn-bar.is-lg {
  font-size: 125%;
}

.btn-bar.is-md {
  font-size: 100%;
}

.btn-bar.is-sm {
  font-size: 87.5%;
}

.btn-bar.is-xs {
  font-size: 75%;
}

.btn-bar.is-xxs {
  font-size: 62.5%;
}

.btn-bar > .btn {
  border-radius: 0;
}

.btn-bar > .btn:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.btn-bar > .btn:first-child.is-round {
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
}

.btn-bar > .btn:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.btn-bar > .btn:last-child.is-round {
  border-top-right-radius: 1.25em;
  border-bottom-right-radius: 1.25em;
}

.btn-bar > .btn:nth-child(2),
.btn-bar > .btn:nth-child(2) ~ .btn {
  border-left: none;
}

.card {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
}

.card.is-shadow {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card > .inner {
  padding: 16px;
}

.card.is-floating-1 {
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

.card.is-floating-1:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.card.is-floating-1.is-disable:active {
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

.card.is-floating-2 {
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card.is-floating-2:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.card.is-floating-2.is-disable, .card.is-floating-2.is-disable:active {
  box-shadow: none;
}

.card.is-floating-3 {
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24);
}

.card.is-floating-3:hover, .card.is-floating-3:active {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.24);
}

.card.is-floating-3.is-disable:hover, .card.is-floating-3.is-disable:active {
  box-shadow: none;
}

.card .cover {
  position: relative;
  min-height: 100px;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
}

.card .cover.is-1x1:before {
  content: "";
  display: block;
  padding: 100% 0 0;
}

.card .cover.is-3x4:before {
  content: "";
  display: block;
  padding: 133.3333% 0 0;
}

.card .cover.is-4x3:before {
  content: "";
  display: block;
  padding: 75% 0 0;
}

.card .cover.is-16x9:before {
  content: "";
  display: block;
  padding: 56.25% 0 0;
}

.card .cover.is-round {
  border-radius: 2px;
}

.card .cover .cover-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card .cover .cover-header,
.card .cover .cover-footer {
  position: absolute;
  width: 100%;
  min-height: 50px;
  padding: 16px;
}

.card .cover .cover-header {
  top: 0;
  left: 0;
}

.card .cover .cover-footer {
  bottom: 0;
  left: 0;
}

.card .cover .cover-header.is-shadow,
.card .cover .cover-footer.is-shadow {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.card .cover .cover-header.is-shadow-full,
.card .cover .cover-footer.is-shadow-full {
  background: rgba(0, 0, 0, 0.2);
}

.card .cover .cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card .cover .cover-overlay.is-shadow {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.card .cover .cover-overlay.is-shadow-full {
  background: rgba(0, 0, 0, 0.2);
}

.card .card-link {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.markdown h1 {
  font-size: 200%;
  line-height: 1.2;
}

.markdown h2 {
  font-size: 150%;
  line-height: 1.3;
}

.markdown h3 {
  font-size: 125%;
  line-height: 1.4;
}

.markdown h4 {
  font-size: 100%;
}

.markdown h5 {
  font-size: 87.5%;
}

.markdown h6 {
  font-size: 75%;
}

.markdown p {
  font-size: 87.5%;
}

.markdown a {
  cursor: pointer;
  color: #1cb4c7;
  border-bottom: 1px dotted #1cb4c7;
}

.markdown a:hover, .markdown a:active {
  color: #199fb1;
  border-bottom-color: transparent;
}

.markdown strong {
  font-weight: 700;
}

.markdown em {
  font-style: italic;
}

.markdown del,
.markdown s {
  text-decoration: line-through;
}

.markdown blockquote {
  color: rgba(0, 0, 0, 0.87);
  background-color: whitesmoke;
  border-left: 8px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  padding: 20px;
}

.markdown code,
.markdown pre {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, serif;
}

.markdown :not(pre) code {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 87.5%;
  border-radius: 2px;
  padding: 0.125em 0.3125em;
  margin: 0 0.125em;
}

.markdown pre {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 75%;
  border-radius: 2px;
  padding: 20px 25px;
  white-space: pre;
  word-wrap: normal;
  overflow: hidden;
  overflow-x: auto;
}

.markdown ul,
.markdown ol {
  margin-left: 1.42em;
}

.markdown ul > li,
.markdown ol > li {
  display: list-item;
  font-size: 87.5%;
  margin-bottom: 0.21em;
}

.markdown ul > li li,
.markdown ol > li li {
  font-size: 100%;
}

.markdown ul > li > ul,
.markdown ul > li > ol,
.markdown ol > li > ul,
.markdown ol > li > ol {
  margin-top: 0.36em;
}

.markdown ul > li {
  list-style: disc outside;
}

.markdown ol > li {
  list-style: decimal outside;
}

.markdown table {
  font-size: 87.5%;
  background-color: #ffffff;
  border-radius: 2px;
}

.markdown table thead {
  background-color: whitesmoke;
}

.markdown table th {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.markdown table th,
.markdown table td {
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
}

.markdown hr {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
}

.markdown p:not(:last-child),
.markdown ul:not(:last-child),
.markdown ol:not(:last-child),
.markdown hr:not(:last-child),
.markdown blockquote:not(:last-child),
.markdown pre:not(:last-child),
.markdown table:not(:last-child) {
  margin-bottom: 1em;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.none.is-all {
  display: none !important;
}

@media screen and (max-width: 575px) {
  .none.is-xs {
    display: none !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .none.is-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .none.is-md {
    display: none !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .none.is-lg {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .none.is-xl {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .none.is-touch {
    display: none !important;
  }
}

@media all and (orientation: landscape) {
  .none.is-yoko {
    display: none !important;
  }
}

@media all and (orientation: portrait) {
  .none.is-tate {
    display: none !important;
  }
}
/*
 *  Title: Project / SMP NIFTY GAME
 */
body.project-niftybusiness-smp {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

.project-niftybusiness-smp .section.is-header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  padding: 6px 0 8px;
}

.project-niftybusiness-smp .section.is-discription {
  background: #0DABD9;
  padding: 6px 0;
}

.project-niftybusiness-smp .section.is-bnr {
  text-align: center;
  background-size: 20px 20px;
  background-position: center bottom;
  background-repeat: repeat;
  background-image: -webkit-linear-gradient(135deg, #FFFBE6 25%, #FCF6DB 25%, #FCF6DB 50%, #FFFBE6 50%, #FFFBE6 75%, #FCF6DB 75%, #FCF6DB);
  background-image: linear-gradient(-45deg, #FFFBE6 25%, #FCF6DB 25%, #FCF6DB 50%, #FFFBE6 50%, #FFFBE6 75%, #FCF6DB 75%, #FCF6DB);
}

.project-niftybusiness-smp .section.is-bnr > .inner {
  padding: 0;
}

.project-niftybusiness-smp .section.is-recommend {
  background-size: 20px 20px;
  background-position: center top;
  background-repeat: repeat;
  background-image: -webkit-linear-gradient(135deg, #FFFBE6 25%, #FCF6DB 25%, #FCF6DB 50%, #FFFBE6 50%, #FFFBE6 75%, #FCF6DB 75%, #FCF6DB);
  background-image: linear-gradient(-45deg, #FFFBE6 25%, #FCF6DB 25%, #FCF6DB 50%, #FFFBE6 50%, #FFFBE6 75%, #FCF6DB 75%, #FCF6DB);
  padding: 16px 0 32px;
  overflow: hidden;
}

.project-niftybusiness-smp .section.is-popular {
  background-size: 20px 20px;
  background-position: center top;
  background-repeat: repeat;
  background-image: -webkit-linear-gradient(135deg, #E8E8E8 25%, #E0E0E0 25%, #E0E0E0 50%, #E8E8E8 50%, #E8E8E8 75%, #E0E0E0 75%, #E0E0E0);
  background-image: linear-gradient(-45deg, #E8E8E8 25%, #E0E0E0 25%, #E0E0E0 50%, #E8E8E8 50%, #E8E8E8 75%, #E0E0E0 75%, #E0E0E0);
  padding: 16px 0 32px;
  overflow: hidden;
}

.project-niftybusiness-smp .section.is-pagetitle {
  background: #0DABD9;
  padding: 6px 0;
}

.project-niftybusiness-smp .section.is-footer {
  background: #0DABD9;
  padding: 24px 0;
}

.project-niftybusiness-smp .area.is-contents {
  padding: 16px 0;
}

.project-niftybusiness-smp .logo.is-header {
  width: 130px;
  margin: 0 0 0 -4px;
}

.project-niftybusiness-smp .im.is-gold,
.project-niftybusiness-smp .fa.is-gold,
.project-niftybusiness-smp .material-icons {
  color: #D69F45;
}

.project-niftybusiness-smp .heading.is-bg {
  padding: 6px;
  margin-bottom: 0;
}

.project-niftybusiness-smp .heading.is-bg.is-black {
  background: #000000;
}

.project-niftybusiness-smp .heading.is-danger {
  color: #dc665d;
}

.project-niftybusiness-smp .card.is-floating-game-1,
.project-niftybusiness-smp .btn.is-floating-game-1 {
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.1), 0 4px 10px -2px rgba(0, 0, 0, 0.15), 0 1px 12px 0 rgba(0, 0, 0, 0.1);
}

.project-niftybusiness-smp .section.is-recommend .card .cover-header,
.project-niftybusiness-smp .section.is-recommend .card .cover-footer {
  padding: 8px;
}

.project-niftybusiness-smp .section.is-popular .card {
  margin: 0 0 10px;
}

.project-niftybusiness-smp .section.is-popular .card .cover-header,
.project-niftybusiness-smp .section.is-popular .card .cover-footer,
.project-niftybusiness-smp .section.is-popular .card .inner {
  padding: 8px;
}

.project-niftybusiness-smp .badge.is-xxl {
  font-size: 200%;
}

.project-niftybusiness-smp .badge.is-xl {
  font-size: 150%;
}

.project-niftybusiness-smp .badge.is-lg {
  font-size: 125%;
}

.project-niftybusiness-smp .badge.is-md {
  font-size: 100%;
}

.project-niftybusiness-smp .badge.is-sm {
  font-size: 87.5%;
}

.project-niftybusiness-smp .badge.is-xs {
  font-size: 75%;
}

.project-niftybusiness-smp .badge.is-xxs {
  font-size: 62.5%;
}

.project-niftybusiness-smp .badge.is-genre {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
  height: 2em;
  line-height: 1;
  padding: 0 1em;
  border-radius: 1em;
  background: rgba(0, 0, 0, 0.4);
}

.project-niftybusiness-smp .badge.is-free {
  position: absolute;
  top: 0.4em;
  right: 0.25em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
  line-height: 1;
  z-index: 1;
  padding: 0 0 0.15em;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.project-niftybusiness-smp .badge.is-free > .fa,
.project-niftybusiness-smp .badge.is-free > .material-icons,
.project-niftybusiness-smp .badge.is-free > .im {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ff1f5a;
  font-size: 4em;
  text-shadow: -2px 2px 2px rgba(0, 0, 0, 0.2);
}

.project-niftybusiness-smp .badge.is-free > .text {
  position: relative;
}

.project-niftybusiness-smp .btn.is-play {
  max-width: 136px;
  background: -webkit-linear-gradient(185deg, #fc4c79, #fe9227);
  background: linear-gradient(-95deg, #fc4c79, #fe9227);
  margin: 6px auto 2px;
}

.project-niftybusiness-smp .btn.is-play .fa,
.project-niftybusiness-smp .btn.is-play .material-icons,
.project-niftybusiness-smp .btn.is-play .im {
  position: absolute;
  top: 50%;
  right: 0.35em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.25em;
}

.project-niftybusiness-smp .btn.is-more {
  background: #ffffff;
}

.project-niftybusiness-smp .btn.is-more .fa,
.project-niftybusiness-smp .btn.is-more .material-icons,
.project-niftybusiness-smp .btn.is-more .im {
  position: absolute;
  top: 50%;
  right: 0.35em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #9e9e9e;
  font-size: 1.5em;
}

.project-niftybusiness-smp .section.is-header .text.is-link {
  color: rgba(0, 0, 0, 0.87);
}

.project-niftybusiness-smp .section.is-footer {
  color: rgba(0, 0, 0, 0.87);
}

.project-niftybusiness-smp .section.is-footer .area.is-footer-links {
  line-height: 2.5;
}

.project-niftybusiness-smp .section.is-footer .area.is-footer-agent,
.project-niftybusiness-smp .section.is-footer .area.is-footer-links {
  margin: 0 0 8px;
}

.project-niftybusiness-smp .section.is-footer .text.is-link {
  color: rgba(0, 0, 0, 0.87);
}

.project-niftybusiness-smp .btn.is-subtitle {
  width: 90%;
  background: -webkit-linear-gradient(185deg, #eaeaea, #cccccc);
  background: linear-gradient(-95deg, #eaeaea, #cccccc);
  margin: 6px auto 2px;
}

details a:link {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: underline;
}

details summary::marker {
	font-size: 1.5em;
}

details div {
	margin-left: 1.8em;
}

details h2 {
	font-size: larger;
	margin-bottom: 1em;
	display: inline-block;
}

#news ul, #news details div {
  margin-left: 0;
}

#news li {
  border-top: 3px solid #c3c3a3;
  margin: 0;
}

#news details {
  font-size: 18px;
  font-weight: normal;
  color: #343404;
}

#news summary {
  cursor: pointer;
  background-image: url(/images/common/ico-arrow_10.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  padding: 15px 10px 15px 35px;
}

#news summary h2 span {
  font-size: 12px;
  display: block;
  float: none;
  margin: 0;
}

#news details div {
  padding: 15px 10px 15px 35px;
}

details[open] summary {
  background-color: #f3f3ed;
}

details summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

#news div.toggle-content {
  padding-bottom: 1em;
}

#news table {
  width: 95%;
  margin-bottom: 1em;
}

#news th {
  background-color: #eef3f9;
}

#news th p, #news td p {
  margin: 0.5em;
}

#news th, #news td {
  border: 1px solid #000;
}