@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700");
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, font, 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, figure, footer, header,
menu, nav, section, audio, video, canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  color: #333;
  text-align: left;
}

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

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  position: relative;
}

body,
input,
textarea {
  color: #fff;
  line-height: 1.6;
}

a:link,
a:visited {
  color: #fff;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {
  list-style: square;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

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

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: #fff;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@-webkit-keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@-webkit-keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@-webkit-keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@-webkit-keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* X方向スケールアップ */
@-webkit-keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@-webkit-keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@-webkit-keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@-webkit-keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@-webkit-keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@-webkit-keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: "Yu Mincho Medium", "游明朝 Medium", YuMincho, "游明朝体", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

.pagetop {
  width: 100%;
  max-width: 1000px;
  padding: 0 110px;
  margin: 0 auto;
  text-align: right;
}

.pagetop img {
  width: 50px;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

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

@media all and (-ms-high-contrast: none) {
  a {
    display: inline-block;
    max-width: 100%;
  }
}

/* Components style
-----------------------------------*/
.column {
  -ms-flex-preferred-size: 0;
      -webkit-flex-basis: 0;
          flex-basis: 0;
  -ms-flex-positive: 1;
      -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      -webkit-flex-shrink: 1;
          flex-shrink: 1;
  padding: 10px;
}

.column.is-narrow {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
}

.column.is-full {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 100%;
}

.column.is-three-quarters {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 75%;
}

.column.is-two-thirds {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 66.6666%;
}

.column.is-half {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 50%;
}

.column.is-one-third {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 33.3333%;
}

.column.is-one-quarter {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 25%;
}

.column.is-offset-three-quarters {
  margin-left: 75%;
}

.column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.column.is-offset-half {
  margin-left: 50%;
}

.column.is-offset-one-third {
  margin-left: 33.3333%;
}

.column.is-offset-one-quarter {
  margin-left: 25%;
}

.column.is-1 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 8.33333%;
}

.column.is-offset-1 {
  margin-left: 8.33333%;
}

.column.is-2 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 16.66667%;
}

.column.is-offset-2 {
  margin-left: 16.66667%;
}

.column.is-3 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 25%;
}

.column.is-offset-3 {
  margin-left: 25%;
}

.column.is-4 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 33.33333%;
}

.column.is-offset-4 {
  margin-left: 33.33333%;
}

.column.is-5 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 41.66667%;
}

.column.is-offset-5 {
  margin-left: 41.66667%;
}

.column.is-6 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 50%;
}

.column.is-offset-6 {
  margin-left: 50%;
}

.column.is-7 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 58.33333%;
}

.column.is-offset-7 {
  margin-left: 58.33333%;
}

.column.is-8 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 66.66667%;
}

.column.is-offset-8 {
  margin-left: 66.66667%;
}

.column.is-9 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 75%;
}

.column.is-offset-9 {
  margin-left: 75%;
}

.column.is-10 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 83.33333%;
}

.column.is-offset-10 {
  margin-left: 83.33333%;
}

.column.is-11 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 91.66667%;
}

.column.is-offset-11 {
  margin-left: 91.66667%;
}

.column.is-12 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 100%;
}

.column.is-offset-12 {
  margin-left: 100%;
}

.column.is-order1 {
  -ms-flex-order: 1;
      -webkit-order: 1;
          order: 1;
}

.column.is-order2 {
  -ms-flex-order: 2;
      -webkit-order: 2;
          order: 2;
}

.column.is-order3 {
  -ms-flex-order: 3;
      -webkit-order: 3;
          order: 3;
}

.column.is-order4 {
  -ms-flex-order: 4;
      -webkit-order: 4;
          order: 4;
}

.column.is-order5 {
  -ms-flex-order: 5;
      -webkit-order: 5;
          order: 5;
}

.column.is-order6 {
  -ms-flex-order: 6;
      -webkit-order: 6;
          order: 6;
}

.column.is-order7 {
  -ms-flex-order: 7;
      -webkit-order: 7;
          order: 7;
}

.column.is-order8 {
  -ms-flex-order: 8;
      -webkit-order: 8;
          order: 8;
}

.column.is-order9 {
  -ms-flex-order: 9;
      -webkit-order: 9;
          order: 9;
}

.column.is-order10 {
  -ms-flex-order: 10;
      -webkit-order: 10;
          order: 10;
}

.column.is-order11 {
  -ms-flex-order: 11;
      -webkit-order: 11;
          order: 11;
}

.column.is-order12 {
  -ms-flex-order: 12;
      -webkit-order: 12;
          order: 12;
}

.columns {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

.columns:last-child {
  margin-bottom: -10px;
}

.columns:not(:last-child) {
  margin-bottom: 10px;
}

.columns.is-centered {
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 20px;
}

.columns.is-gapless > .column {
  margin: 0;
  padding: 0;
}

.columns.is-multiline {
  -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.tile {
  -ms-flex-align: stretch;
      -webkit-align-items: stretch;
          align-items: stretch;
  -ms-flex-preferred-size: auto;
      -webkit-flex-basis: auto;
          flex-basis: auto;
  -ms-flex-positive: 1;
      -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      -webkit-flex-shrink: 1;
          flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: min-content;
}

.tile.is-ancestor {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}

.tile.is-ancestor:last-child {
  margin-bottom: -10px;
}

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 10px;
}

.tile.is-child {
  margin: 0 !important;
}

.tile.is-parent {
  padding: 10px;
}

.tile.is-vertical {
  -ms-flex-direction: column;
      -webkit-flex-direction: column;
          flex-direction: column;
}

.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 20px !important;
}

.tile:not(.is-child) {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tile.is-1 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 8.33333%;
}

.tile.is-2 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 16.66667%;
}

.tile.is-3 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 25%;
}

.tile.is-4 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 33.33333%;
}

.tile.is-5 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 41.66667%;
}

.tile.is-6 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 50%;
}

.tile.is-7 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 58.33333%;
}

.tile.is-8 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 66.66667%;
}

.tile.is-9 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 75%;
}

.tile.is-10 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 83.33333%;
}

.tile.is-11 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 91.66667%;
}

.tile.is-12 {
  -ms-flex: none;
      -webkit-flex: none;
          flex: none;
  width: 100%;
}

.button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: .7em 1em;
  margin: 0 auto;
  white-space: nowrap;
  font-size: 1.2em;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border: none;
  border-radius: 5px;
  text-decoration: none !important;
  background: transparent;
  transition: all .2s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.button.is-small {
  border-radius: 2px;
  font-size: 11px;
  line-height: 16px;
  padding-left: 6px;
  padding-right: 6px;
}

.button.is-medium {
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.button.is-large {
  font-size: 22px;
  padding-left: 20px;
  padding-right: 20px;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button strong {
  color: inherit;
}

.button small {
  display: block;
  font-size: 11px;
  line-height: 1;
  margin-top: 5px;
}

.button .icon:first-child,
.button .tag:first-child {
  margin-left: -2px;
  margin-right: 4px;
}

.button .icon:last-child,
.button .tag:last-child {
  margin-left: 4px;
  margin-right: -2px;
}

.button:hover, .button:focus, .button.is-active {
  text-decoration: none;
}

.button:active {
  box-shadow: inset 0 1px 2px rgba(17, 17, 17, .2);
}

.button.is-white {
  background-color: #fff;
  border-color: transparent;
  color: #111;
}

.button.is-white:hover, .button.is-white:focus, .button.is-white.is-active {
  background-color: #e6e6e6;
  border-color: transparent;
  color: #111;
}

.button.is-white:active {
  border-color: transparent;
}

.button.is-white.is-inverted {
  background-color: #111;
  color: #fff;
}

.button.is-white.is-loading:after {
  border-color: transparent transparent #111 #111 !important;
}

.button.is-white.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-white.is-outlined:hover, .button.is-white.is-outlined:focus {
  background-color: #fff;
  border-color: #fff;
  color: #111;
}

.button.is-black {
  background-color: #111;
  border-color: transparent;
  color: #fff;
}

.button.is-black:hover, .button.is-black:focus, .button.is-black.is-active {
  background-color: black;
  border-color: transparent;
  color: #fff;
}

.button.is-black:active {
  border-color: transparent;
}

.button.is-black.is-inverted {
  background-color: #fff;
  color: #111;
}

.button.is-black.is-loading:after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-black.is-outlined {
  background-color: transparent;
  border-color: #111;
  color: #111;
}

.button.is-black.is-outlined:hover, .button.is-black.is-outlined:focus {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.button.is-light {
  background-color: #b2b6b9;
  border-color: transparent;
  color: #69707a;
}

.button.is-light:hover, .button.is-light:focus, .button.is-light.is-active {
  background-color: #979da1;
  border-color: transparent;
  color: #69707a;
}

.button.is-light:active {
  border-color: transparent;
}

.button.is-light.is-inverted {
  background-color: #69707a;
  color: #b2b6b9;
}

.button.is-light.is-loading:after {
  border-color: transparent transparent #69707a #69707a !important;
}

.button.is-light.is-outlined {
  background-color: transparent;
  border-color: #b2b6b9;
  color: #b2b6b9;
}

.button.is-light.is-outlined:hover, .button.is-light.is-outlined:focus {
  background-color: #b2b6b9;
  border-color: #b2b6b9;
  color: #69707a;
}

.button.is-dark {
  background-color: #69707a;
  border-color: transparent;
  color: #b2b6b9;
}

.button.is-dark:hover, .button.is-dark:focus, .button.is-dark.is-active {
  background-color: #51575f;
  border-color: transparent;
  color: #b2b6b9;
}

.button.is-dark:active {
  border-color: transparent;
}

.button.is-dark.is-inverted {
  background-color: #b2b6b9;
  color: #69707a;
}

.button.is-dark.is-loading:after {
  border-color: transparent transparent #b2b6b9 #b2b6b9 !important;
}

.button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #69707a;
  color: #69707a;
}

.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined:focus {
  background-color: #69707a;
  border-color: #69707a;
  color: #b2b6b9;
}

.button.is-primary {
  background-color: #1fc8db;
  border-color: transparent;
  color: findColorInvert(#1fc8db);
}

.button.is-primary:hover, .button.is-primary:focus, .button.is-primary.is-active {
  background-color: #199fae;
  border-color: transparent;
  color: findColorInvert(#1fc8db);
}

.button.is-primary:active {
  border-color: transparent;
}

.button.is-primary.is-inverted {
  background-color: findColorInvert(#1fc8db);
  color: #1fc8db;
}

.button.is-primary.is-loading:after {
  border-color: transparent transparent findColorInvert(#1fc8db) findColorInvert(#1fc8db) !important;
}

.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #1fc8db;
  color: #1fc8db;
}

.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus {
  background-color: #1fc8db;
  border-color: #1fc8db;
  color: findColorInvert(#1fc8db);
}

.button.is-info {
  background-color: #3f78c6;
  border-color: transparent;
  color: findColorInvert(#3f78c6);
}

.button.is-info:hover, .button.is-info:focus, .button.is-info.is-active {
  background-color: #3060a2;
  border-color: transparent;
  color: findColorInvert(#3f78c6);
}

.button.is-info:active {
  border-color: transparent;
}

.button.is-info.is-inverted {
  background-color: findColorInvert(#3f78c6);
  color: #3f78c6;
}

.button.is-info.is-loading:after {
  border-color: transparent transparent findColorInvert(#3f78c6) findColorInvert(#3f78c6) !important;
}

.button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3f78c6;
  color: #3f78c6;
}

.button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus {
  background-color: #3f78c6;
  border-color: #3f78c6;
  color: findColorInvert(#3f78c6);
}

.button.is-success {
  background-color: #78bc1e;
  border-color: transparent;
  color: findColorInvert(#78bc1e);
}

.button.is-success:hover, .button.is-success:focus, .button.is-success.is-active {
  background-color: #5c9017;
  border-color: transparent;
  color: findColorInvert(#78bc1e);
}

.button.is-success:active {
  border-color: transparent;
}

.button.is-success.is-inverted {
  background-color: findColorInvert(#78bc1e);
  color: #78bc1e;
}

.button.is-success.is-loading:after {
  border-color: transparent transparent findColorInvert(#78bc1e) findColorInvert(#78bc1e) !important;
}

.button.is-success.is-outlined {
  background-color: transparent;
  border-color: #78bc1e;
  color: #78bc1e;
}

.button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus {
  background-color: #78bc1e;
  border-color: #78bc1e;
  color: findColorInvert(#78bc1e);
}

.button.is-warning {
  background-color: #fad00d;
  border-color: transparent;
  color: findColorInvert(#fad00d);
}

.button.is-warning:hover, .button.is-warning:focus, .button.is-warning.is-active {
  background-color: #d0ac04;
  border-color: transparent;
  color: findColorInvert(#fad00d);
}

.button.is-warning:active {
  border-color: transparent;
}

.button.is-warning.is-inverted {
  background-color: findColorInvert(#fad00d);
  color: #fad00d;
}

.button.is-warning.is-loading:after {
  border-color: transparent transparent findColorInvert(#fad00d) findColorInvert(#fad00d) !important;
}

.button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #fad00d;
  color: #fad00d;
}

.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
  background-color: #fad00d;
  border-color: #fad00d;
  color: findColorInvert(#fad00d);
}

.button.is-danger {
  background-color: #e94709;
  border-color: transparent;
  color: findColorInvert(#e94709);
}

.button.is-danger:hover, .button.is-danger:focus, .button.is-danger.is-active {
  background-color: #b83807;
  border-color: transparent;
  color: findColorInvert(#e94709);
}

.button.is-danger:active {
  border-color: transparent;
}

.button.is-danger.is-inverted {
  background-color: findColorInvert(#e94709);
  color: #e94709;
}

.button.is-danger.is-loading:after {
  border-color: transparent transparent findColorInvert(#e94709) findColorInvert(#e94709) !important;
}

.button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #e94709;
  color: #e94709;
}

.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus {
  background-color: #e94709;
  border-color: #e94709;
  color: findColorInvert(#e94709);
}

.button.is-dark {
  color: #fff;
}

.button.is-link {
  background-color: transparent;
  border-color: transparent;
  color: #111;
  text-decoration: underline;
}

.button.is-link:hover, .button.is-link:focus {
  background-color: #b2b6b9;
  color: #111;
}

.button.is-next {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding-right: 0;
  padding-left: 0;
}

.button.is-next span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

.button.is-next:before, .button.is-next:after {
  display: inline-block;
  speak: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  width: 1.5em;
  min-width: 1.5em;
  content: '';
  text-align: center;
}

.button.is-next:after {
  content: "";
}

.button[disabled], .button.is-disabled {
  opacity: 0.5;
}

.button.is-fullWidth {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.buttonSingleColumn {
  margin-bottom: 50px;
  text-align: center;
}

.buttonSingleColumn + .buttonThreeBlock {
  margin-top: -30px;
  margin-bottom: 30px;
}

.buttonTwoBlock {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
}

.buttonTwoBlock > * {
  width: 48%;
}

.buttonTwoBlock > *:first-child {
  text-align: left;
}

.buttonTwoBlock > *:last-child {
  text-align: right;
}

.buttonTwoBlock > * .button {
  margin: 0;
}

.buttonTwoOneBlock {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.buttonTwoOneBlock > * {
  margin-bottom: 0;
}

.buttonTwoOneBlock > *:first-child {
  width: 64.66%;
  text-align: left;
}

.buttonTwoOneBlock > *:last-child {
  width: 31.33%;
  text-align: right;
}

.buttonTwoOneBlock > * .button {
  margin: 0;
}

.buttonOneTwoBlock {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.buttonOneTwoBlock > * {
  margin-bottom: 0;
}

.buttonOneTwoBlock > *:first-child {
  width: 31.33%;
  text-align: left;
}

.buttonOneTwoBlock > *:last-child {
  width: 64.66%;
  text-align: right;
}

.buttonOneTwoBlock > * .button {
  margin: 0;
}

.buttonThreeBlock {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.buttonThreeBlock > * {
  margin-bottom: 0;
  width: 31.33%;
}

.buttonThreeBlock > *:first-child {
  text-align: left;
}

.buttonThreeBlock > *:nth-child(3n+2) {
  text-align: center;
}

.buttonThreeBlock > *:last-child {
  text-align: right;
}

.modal {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  display: none;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 5.867%;
}

.modal.is-active {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.modal .delete {
  position: absolute;
  right: -22px;
  top: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: top;
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 100;
}

.modal .delete:before, .modal .delete:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}

.modal .delete:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal .delete:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(17, 17, 17, .75);
}

.modal-container {
  width: 100%;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

.modal-content .message {
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content .message-body {
  padding: 30px;
}

.modal-content .message-body > *:last-child {
  margin-bottom: 0 !important;
}

.modal-content .message-header {
  padding: 20px 30px 0;
}

.modal.modalMovie .modal-content .message-body {
  padding: 0;
  border: 1px solid #fff;
}

.modal.modalComment {
  color: #311b00;
}

.modal.modalComment p:last-child {
  margin-bottom: 0 !important;
}

.modal.modalComment hr {
  margin-bottom: 25px;
}

.modal.modalComment .message-body {
  padding: 10px 30px 30px;
}

.modal.modalComment .message-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.modal.modalComment h5 {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  color: #fff;
  background: #311b00;
}

.modal.modalComment .prev,
.modal.modalComment .next {
  position: absolute;
  top: 50%;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 25px;
  line-height: 1;
  color: #311b00;
  background: #fff;
  border: 2px solid #311b00;
  border-radius: 22px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalComment .prev {
  left: -1em;
}

.modal.modalComment .next {
  right: -1em;
}

@media screen and (max-width: 667px) {
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  margin: 0 0 30px;
  padding-top: 10px;
  text-align: center;
}

.pagination ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
      -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -ms-flex-direction: row;
      -webkit-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}

.pagination ul li {
  display: inline-block;
  list-style: none;
  padding: 0 2px;
}

.pagination ul li a {
  display: inline-block;
  width: 2.2em;
  height: 2.2em;
  line-height: 2.1;
  outline: none;
  background: #000;
  padding: 0;
  text-align: center;
  border: solid 1px #000;
  color: #fff;
  text-decoration: none;
}

.pagination ul li a.is-current {
  color: #000 !important;
  background: #fff;
}

.pagination ul li a.is-current:hover {
  opacity: 1;
}

.pagination ul li.page-prev a,
.pagination ul li.page-next a {
  border: none;
  line-height: 2.3;
}

@media screen and (max-width: 320px) {
  .pagination {
    margin: 0 0 30px;
  }
  .pagination ul li a {
    width: 2.2em;
    height: 2.2em;
    line-height: 2.1;
    font-size: .875em;
  }
  .pagination ul li.page-prev a,
  .pagination ul li.page-next a {
    line-height: 2.2;
  }
}

.touchlink {
  cursor: pointer;
}

/* View style
-----------------------------------*/
body {
  min-width: 1024px;
  color: #222;
  background: #fdf4e4;
}

body img {
  vertical-align: bottom;
}

.siteMain {
  width: 100%;
  min-width: 1024px;
  height: 100vh;
  max-height: 62.5vw;
  margin-bottom: 80px;
  overflow: hidden;
}

.siteMain .bg,
.siteMain span {
  display: block;
  background: center center no-repeat url("../images/main.jpg");
  background-size: contain;
  z-index: 1;
  text-indent: -9999em;
}

.siteMain span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.siteMain .bg {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;
  width: calc(100% + 100px);
  background-size: cover;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
  -webkit-filter: blur(15px);
          filter: blur(15px);
  z-index: 0;
}

#release {
  margin: 0 auto 90px;
}

#release .inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  -ms-flex-align: start;
      -webkit-align-items: flex-start;
          align-items: flex-start;
  width: 1000px;
  margin: 0 auto;
}

#release figure {
  width: 49%;
}

#release .details {
  width: 49%;
}

#release .details h2 {
  padding-top: 8px;
  margin-bottom: 20px;
}

#release .details h3 {
  margin-bottom: 20px;
}

#release .details p {
  margin-bottom: 20px;
}

#release .details ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin: 0;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  list-style: none;
}

#release .details ul li + li {
  margin-left: 10px;
}

#release .details ul img {
  height: 43px;
}

#release a {
  display: inline-block;
}

#mv {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-align: start;
      -webkit-align-items: flex-start;
          align-items: flex-start;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}

#mv > div {
  width: 490px;
}

#mv h3 {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  text-align: left;
}

#mv .video-container {
  margin: 0 auto;
}

#interview {
  width: 100%;
  padding-top: 100px;
  margin: 80px auto 120px;
  text-align: center;
  border-top: 3px solid #311b00;
}

#interview h2 {
  margin-bottom: 0;
}

#interview .interviewCont {
  display: none;
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

#interview .interviewCont.is-active {
  display: block;
}

#interview .interviewCont .inner {
  width: 100%;
  padding: 30px 25px;
  background: rgba(255, 255, 255, .5);
  border: 2px solid #311b00;
  border-radius: 10px;
}

#interview .interviewCont .inner + .inner {
  margin-top: 50px;
}

#interview .interviewCont .inner:last-of-type {
  margin-bottom: 20px;
}

#interview .interviewCont h3 {
  padding: .2em;
  margin-bottom: 0;
  text-align: center;
  background: #000;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

#interview .interviewCont p {
  color: #000;
  line-height: 1.4;
  margin-bottom: 1.5em;
}

#interview .interviewCont p b {
  color: #000;
}

#interview .interviewCont p.int00 {
  color: #d61a66;
  font-weight: bold;
}

#interview .interviewCont p.int01, #interview .interviewCont p.int02 {
  text-indent: -1em;
  padding-left: 1em;
}

#interview .interviewCont p.is-right {
  color: #666;
}

#interview .interviewCont p:last-child {
  margin-bottom: 0;
}

#interview .int-tab {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0 auto 30px;
  background: #000;
}

#interview .int-tab li:nth-child(1), #interview .int-tab li:nth-child(3) {
  width: 150px;
}

#interview .int-tab li:nth-child(2) {
  width: calc( 100% - 310px);
}

#interview .int-tab li h3 {
  height: 46px;
}

#interview .int-tab li span {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 46px;
  text-align: center;
  background: #666;
  color: #fff;
  padding: .2em;
  cursor: pointer;
}

#linerNotes {
  width: 100%;
  padding-top: 100px;
  margin: 80px auto 120px;
  text-align: center;
  border-top: 3px solid #311b00;
}

#linerNotes h2 {
  margin-bottom: 0;
}

#linerNotes .linerNotesCont {
  display: none;
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

#linerNotes .linerNotesCont.is-active {
  display: block;
}

#linerNotes .linerNotesCont .inner {
  width: 100%;
  padding: 30px 25px;
  background: rgba(255, 255, 255, .5);
  border: 2px solid #311b00;
  border-radius: 10px;
}

#linerNotes .linerNotesCont .inner + .inner {
  margin-top: 50px;
}

#linerNotes .linerNotesCont .inner:last-of-type {
  margin-bottom: 20px;
}

#linerNotes .linerNotesCont h3 {
  padding: .2em;
  margin-bottom: 30px;
  text-align: center;
  background: #000;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

#linerNotes .linerNotesCont p {
  color: #000;
  line-height: 1.4;
  margin-bottom: 1.5em;
}

#linerNotes .linerNotesCont p b {
  color: #000;
}

#linerNotes .linerNotesCont p.int00 {
  color: #d61a66;
  font-weight: bold;
}

#linerNotes .linerNotesCont p.int01, #linerNotes .linerNotesCont p.int02 {
  text-indent: -1em;
  padding-left: 1em;
}

#linerNotes .linerNotesCont p.is-right {
  color: #666;
}

#linerNotes .linerNotesCont p:last-child {
  margin-bottom: 0;
}

#linerNotes .linerNotes-tab {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0 auto 30px;
  background: #000;
}

#linerNotes .linerNotes-tab li:nth-child(1), #linerNotes .linerNotes-tab li:nth-child(3) {
  width: 150px;
}

#linerNotes .linerNotes-tab li:nth-child(2) {
  width: calc( 100% - 310px);
}

#linerNotes .linerNotes-tab li h3 {
  height: 46px;
  margin-bottom: 0;
}

#linerNotes .linerNotes-tab li span {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: 46px;
  text-align: center;
  background: #666;
  color: #fff;
  padding: .2em;
  cursor: pointer;
}

#tour {
  width: 100%;
  padding-top: 80px;
  margin: 0 auto 80px;
  text-align: center;
  border-top: 3px solid #311b00;
}

#tour h3 {
  width: 1000px;
  padding: 0 50px;
  margin: 0 auto 30px;
  text-align: center;
  background: #e71b4e;
}

#tour ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
      -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-align: stretch;
      -webkit-align-items: stretch;
          align-items: stretch;
  -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 1000px;
  margin: 0 auto 20px;
  list-style: none;
}

#tour ul li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-align: center;
      -webkit-align-items: center;
          align-items: center;
  -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 32.5%;
  padding: 15px 0;
  font-weight: 700;
  text-align: left;
  border-top: 1px solid #999;
}

#tour ul li span {
  display: block;
}

#tour ul li .date {
  display: block;
  padding: .3em .5em;
  border-radius: 4px;
  line-height: 1.2;
  color: #fff;
  background: #e71b4e;
}

#tour ul li .avenue {
  padding-left: .8em;
}

#tour ul li.final {
  width: 48%;
  color: #e71b4e;
}

#tour ul li.final .date {
  background: #333;
}

#tour ul li.final .avenue {
  font-size: 1.2em;
}

#tour .moreLink a {
  display: inline-block;
  width: 500px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.mv {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
      -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: center;
      -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  padding: 60px 0 40px;
  margin: 0 auto;
  border-top: 3px solid #311b00;
}

.mv .mv-items {
  width: 33.33%;
  padding: 0 1%;
}

.footer {
  padding: 20px 0 10px;
  text-align: center;
  color: #fff;
  background: #000;
  font-size: 10px;
}

.footer figure {
  width: 60px;
  margin: 10px auto;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .siteMain {
    width: 100%;
    height: 62.5vw;
    max-height: 100vh;
    margin-bottom: 40px;
  }
  .siteMain span {
    background-position: left center;
  }
}

/* extension style
-----------------------------------*/
.white {
  color: #fff !important;
}

.black {
  color: #111 !important;
}

.blue {
  color: #3f78c6 !important;
}

.green {
  color: #78bc1e !important;
}

.orange {
  color: #fb7818 !important;
}

.red {
  color: #e94709 !important;
}

.yellow {
  color: #fad00d !important;
}

.purple {
  color: #847bb9 !important;
}

.pink {
  color: #ff82a1 !important;
}

.grey {
  color: #acadad !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #111 !important;
}

.bg-blue {
  background-color: #3f78c6 !important;
}

.bg-blue-light {
  background-color: #73cbef !important;
}

.bg-green-light {
  background-color: #a0d264 !important;
}

.bg-orange {
  background-color: #fb7818 !important;
}

.bg-red {
  background-color: #e94709 !important;
}

.bg-yellow {
  background-color: #fad00d !important;
}

.bg-purple {
  background-color: #847bb9 !important;
}

.bg-pink {
  background-color: #ff82a1 !important;
}

.bg-sec-sub {
  background-color: #f4f4f4 !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

.w9em {
  width: 9em !important;
}

.w10em {
  width: 10em !important;
}

.flr {
  float: right !important;
}

.fll {
  float: left !important;
}

.fln {
  float: none !important;
}

.clb {
  clear: both !important;
}

.cln {
  clear: none !important;
}

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

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

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

.is-bold {
  font-weight: bold !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* 文字サイズ */
.fs08 {
  font-size: .8em !important;
}

.fs0875 {
  font-size: .875em !important;
}

.fs09 {
  font-size: .9em !important;
}

.fs0937 {
  font-size: .9375em !important;
}

.fs11 {
  font-size: 1.1em !important;
}

.fs12 {
  font-size: 1.2em !important;
}

.fs1125 {
  font-size: 1.125em !important;
}

.fs125 {
  font-size: 1.25em !important;
}

.fs13 {
  font-size: 1.3em !important;
}

.fs14 {
  font-size: 1.4em !important;
}

.fs15 {
  font-size: 1.5em !important;
}

.fs16 {
  font-size: 1.6em !important;
}

.fs17 {
  font-size: 1.7em !important;
}

.fs18 {
  font-size: 1.8em !important;
}

.fs19 {
  font-size: 1.9em !important;
}

.fs20 {
  font-size: 2.0em !important;
}

.lh1 {
  line-height: 1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mlr5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mlr10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb80 {
  padding-bottom: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.ofx {
  width: 100% !important;
  overflow-x: auto;
}

.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  padding-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

hr.dot {
  background: transparent;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 1.5em;
}

hr.clearHr {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px;
}

.op01 {
  opacity: .1;
}

.op02 {
  opacity: .2;
}

.op03 {
  opacity: .3;
}

.op04 {
  opacity: .4;
}

.op05 {
  opacity: .5;
}

.op06 {
  opacity: .6;
}

.op07 {
  opacity: .7;
}

.op08 {
  opacity: .8;
}

.op09 {
  opacity: .9;
}

.op10 {
  opacity: 10;
}
