@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("./fontawesome.css");
@import url("./fa-brands.css");
@import url("./fa-regular.css");
@import url("./fa-solid.css");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css?family=Oswald:400,600");
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 Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  position: relative;
}

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

a:link,
a:visited {
  color: #d00;
  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: #999;
  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 */
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

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

#gNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 100;
}

#gNav h3 {
  display: block;
  position: absolute;
  top: 50%;
  left: 3vw;
  z-index: 2;
}

#gNav h3 img {
  width: 20vw;
  vertical-align: bottom;
  transform: translate(0, -55%);
}

#gNav ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 2vw;
  margin: 0;
  list-style: none;
  background: #000;
  z-index: 1;
}

#gNav ul li {
  padding: 0 .5vw;
}

#gNav ul a {
  display: block;
  font-size: 3vw;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 1vw 3vw;
  color: #fff;
  border: 2px solid #fff;
}

#gNav ul a span {
  display: inline-block;
  border-bottom: 2px solid #c00;
}

body:before {
  display: block;
  content: '';
  position: fixed;
  top: 12vw;
  right: 0;
  bottom: 0;
  left: 0;
  background: center top no-repeat url("../images/bg.jpg");
  background-size: cover;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

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

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

/* Components style
-----------------------------------*/
.column {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 10px;
}

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

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

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

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

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

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

.column.is-one-quarter {
  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 {
  flex: none;
  width: 8.33333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column.is-order1 {
  order: 1;
}

.column.is-order2 {
  order: 2;
}

.column.is-order3 {
  order: 3;
}

.column.is-order4 {
  order: 4;
}

.column.is-order5 {
  order: 5;
}

.column.is-order6 {
  order: 6;
}

.column.is-order7 {
  order: 7;
}

.column.is-order8 {
  order: 8;
}

.column.is-order9 {
  order: 9;
}

.column.is-order10 {
  order: 10;
}

.column.is-order11 {
  order: 11;
}

.column.is-order12 {
  order: 12;
}

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

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

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

.columns.is-centered {
  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 {
  flex-wrap: wrap;
}

.tile {
  align-items: stretch;
  flex-basis: auto;
  flex-grow: 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 {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: .4em 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: 18px;
  padding-left: 14px;
  padding-right: 14px;
}

.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: #d00;
  border-color: transparent;
  color: findColorInvert(#d00);
}

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

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

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

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

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

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

.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: flex;
  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 Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", 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: \f105;
}

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

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

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

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

.buttonTwoBlock {
  display: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 5.867%;
}

.modal.is-active {
  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 {
  transform: rotate(45deg);
}

.modal .delete:after {
  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 - 40px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

.modal-content .message-body h6.videoTrigger {
  height: auto !important;
}

.modal-content .message-body img {
  vertical-align: bottom;
}

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

.modal.modalMovie {
  z-index: 100010;
}

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

.modal.modal1st {
  padding: 0 9%;
}

.modal.modalInStore .message-body {
  padding: 15px;
}

.modal.modalInStore .message-body dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
}

.modal.modalInStore .message-body dt {
  width: 100%;
  padding: 5px .8em;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
  background: #c00;
  color: #fff;
}

.modal.modalInStore .message-body dd {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}

.modal.modalInStore .message-body dd b.fs12 {
  line-height: 1.2;
}

.modal.modalInStore .message-body dd > *:last-child {
  margin-bottom: 0;
}

.modal.modalInStore .message-body dd ul {
  padding-left: 1em;
  margin: 0;
  list-style: none;
}

.modal.modalInStore .message-body dd ul li {
  text-indent: -1em;
  line-height: 1.4;
}

.modal.modalInStore .message-body dd ul li * {
  text-indent: 0;
}

.modal.modalInStore .message-body dd ul li + li {
  margin-top: 5px;
}

.modal.modalInStore .message-header {
  padding: 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  background: #000;
  color: #fff;
}

.modal.modalInStore .prev,
.modal.modalInStore .next {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 15px;
  line-height: 1;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 15px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalInStore .prev::-webkit-search-decoration,
.modal.modalInStore .next::-webkit-search-decoration {
  display: none;
}

.modal.modalInStore .prev {
  left: -15px;
}

.modal.modalInStore .next {
  right: -15px;
}

@media screen and (max-width: 667px) {
  .modal.modalComment .prev,
  .modal.modalComment .next {
    width: 38px;
    height: 38px;
    margin-top: -19px;
  }
  .modal.modalComment .prev {
    left: -24px;
  }
  .modal.modalComment .next {
    right: -24px;
  }
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

.touchlink {
  cursor: pointer;
}

/* View style
-----------------------------------*/
body {
  color: #000;
  background: #000;
}

.inview {
  opacity: 0;
  transition: all 0.3s ease-out;
  transform: translate(0, 60px);
}

.inview.is-view {
  opacity: 1;
  transform: translate(0, 0);
}

img {
  vertical-align: bottom;
}

#header {
  padding: 76vw 0 0;
  transition: all 0.4s ease-out;
  transform: translate(0, -10%);
  z-index: 5;
  opacity: 0;
}

#header.is-view {
  transform: translate(0, 0);
  opacity: 1;
}

#header .siteLogo {
  width: 59.7vw;
  margin: 0 auto -5vw;
  z-index: 2;
}

#header h1 {
  padding: 3.2vw 3.5vw;
  background: rgba(255, 255, 255, .6);
  z-index: 1;
}

#header img {
  width: 100%;
}

#interview #header {
  padding: 12vw 0 0 0;
}

#interview #header h1 {
  padding: 0;
}

.videoTrigger {
  width: 100%;
  height: 55vw;
  margin-bottom: 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.videoTrigger .fa-youtube {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(204, 0, 0, .6);
  font-size: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-out;
}

.videoTrigger span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center center no-repeat;
  background-size: cover;
}

.comment {
  margin-bottom: -2px !important;
}

#cd,
#cd02 {
  width: 100%;
  padding: 2vw 3.5vw 5vw;
  font-weight: 600;
  background: rgba(255, 255, 255, .6);
}

#cd img,
#cd02 img {
  width: 100%;
  vertical-align: bottom;
}

#cd h3,
#cd02 h3 {
  margin-bottom: 3vw;
}

#cd h4,
#cd02 h4 {
  display: inline-block;
  width: auto;
  padding: .3em .5em .4em;
  margin-bottom: 2vw;
  line-height: 1.2;
  color: #fff;
  font-size: 3.7vw;
  font-weight: 800;
  background: #000;
}

#cd p,
#cd02 p {
  margin-bottom: 5vw;
}

#cd .track,
#cd02 .track {
  margin-bottom: 8vw;
}

#cd .reserveImg,
#cd02 .reserveImg {
  margin-bottom: 5vw;
}

#cd .reserveImg:after,
#cd02 .reserveImg:after {
  position: absolute;
  right: 10%;
  top: 50%;
  display: block;
  width: 80%;
  margin: -1em 0 0;
  padding: .1em;
  font-size: 12vw;
  font-weight: 800;
  text-shadow: 2px 2px 0 #c00;
  color: #fff;
  text-align: center;
  background: rgba(204, 0, 0, .8);
  transform: rotate(-7deg);
  box-sizing: border-box;
}

#cd ul,
#cd02 ul {
  width: auto;
  list-style-type: disc;
}

#cd ul li,
#cd02 ul li {
  line-height: 1.2;
  width: auto;
}

#cd .bnrList,
#cd02 .bnrList {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0 0 6vw;
}

#cd .bnrList li,
#cd02 .bnrList li {
  width: calc(50% - 1.75vw);
  margin-bottom: 3.5vw;
}

#cd .buyList,
#cd02 .buyList {
  font-size: 3vw;
  margin-bottom: 8vw;
}

#cd .buyList li + li,
#cd02 .buyList li + li {
  margin-top: .3em;
}

#cd .reserveDate,
#cd02 .reserveDate {
  margin-bottom: 0;
  font-size: 3.8vw;
  line-height: 1.4;
}

#cd .reserveDate + p,
#cd02 .reserveDate + p {
  font-size: 3.5vw;
  line-height: 1.2;
  margin-bottom: 8vw;
}

#cd .reserveDate .red,
#cd02 .reserveDate .red {
  font-weight: 800;
}

#cd .attention,
#cd02 .attention {
  font-size: 3vw;
  margin-bottom: 8vw;
}

#cd .attention li + li,
#cd02 .attention li + li {
  margin-top: .3em;
}

#cd #instore,
#cd02 #instore {
  text-shadow: 1px 1px 0 #fff;
}

#cd #instore .title,
#cd02 #instore .title {
  margin-bottom: 5vw;
}

#cd #instore p,
#cd02 #instore p {
  margin-bottom: 5vw;
  line-height: 1.2;
}

#cd #instore h3, #cd #instore figure,
#cd02 #instore h3,
#cd02 #instore figure {
  margin-bottom: 5vw;
}

#cd #instore h4,
#cd02 #instore h4 {
  text-shadow: none;
}

#cd #instore ul,
#cd02 #instore ul {
  margin-left: 5vw;
}

#cd #instore li,
#cd02 #instore li {
  font-size: 3.2vw;
}

#cd #instore figure,
#cd02 #instore figure {
  padding-right: 30vw;
}

#cd #instore hr,
#cd02 #instore hr {
  height: 4px;
  margin: 10vw 0;
  background: #000;
}

#cd .bnrInt,
#cd02 .bnrInt {
  padding: 10vw 0;
  margin-bottom: 0;
}

#cd #streaming .item,
#cd02 #streaming .item {
  margin-bottom: 5vw;
}

#cd #streaming .line,
#cd02 #streaming .line {
  margin-bottom: 15vw;
}

#cd02 {
  padding: 10vw 3.5vw 5vw;
  border-top: 4px solid #000;
}

#tour {
  width: 100%;
  padding: 2vw 0 5vw;
  font-weight: 600;
  background: rgba(255, 255, 255, .6);
}

#tour img {
  width: 100%;
  vertical-align: bottom;
}

#tour h2 {
  width: 100%;
  margin-bottom: 5vw;
}

#tour .reserve {
  width: 93vw;
  padding: 3vw 3.5vw;
  margin: 0 auto 5vw;
  border: 5px solid #e60012;
  background: #fff;
}

#tour .reserve h4 {
  margin-bottom: 3vw;
  text-align: center;
  font-size: 6.5vw;
  font-weight: 800;
  line-height: 1.2;
  color: #e60012;
}

#tour .reserve .period {
  width: 100%;
  padding: .2em;
  margin-bottom: 3vw;
  font-size: 5vw;
  font-weight: 600;
  color: #fff;
  background: #e60012;
  text-align: center;
}

#tour .reserve .covered {
  font-size: 3.2vw;
  margin-bottom: 3vw;
  text-align: center;
}

#tour .reserve .link {
  margin-bottom: 0;
  font-size: 4vw;
  text-align: center;
}

#tour .reserve .button {
  width: 100%;
  color: #fff;
  background: #000;
}

#tour .tourList {
  width: 100%;
  padding: 0 3.5vw;
  margin: 0 0 5vw;
  list-style: none;
}

#tour .tourList li {
  width: 100%;
  padding: 4vw 1vw 4vw 3vw;
  margin-bottom: 2vw;
  font-size: 5vw;
  line-height: 1;
  background: #ffdd16;
}

#tour .tourList li span {
  display: inline-block;
}

#tour .tourList li .date {
  font-size: 1.2em;
  margin-right: .1em;
}

#tour .tourList li small {
  display: inline-block;
  margin-right: .2em;
}

#tour .tourList li .avenue {
  font-size: .86em;
}

#tour .tourList li .band {
  display: block;
  width: 100%;
  padding-top: .2em;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4.5vw;
}

#tour .tourList li .subTitle {
  font-size: 3.6vw;
  line-height: 1;
  color: #e60012;
}

#tour .tourList li .new:after {
  display: inline-block;
  content: 'NEW';
  padding: .3em;
  margin-left: .3em;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: .5em;
  color: #fff;
  background: #d00;
  vertical-align: middle;
}

#tour .tourList li .cancel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, .6);
}

#tour .tourList li .cancel span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: .4em 1em;
  background: #c00;
  color: #fff;
  transform: translate(-50%, -50%);
}

#tour .tourList li .cancelBand {
  text-decoration: line-through;
}

#tour .tourList li .cancelBand:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding: .3em .5em;
  content: 'キャンセル';
  text-decoration: none;
  white-space: nowrap;
  font-size: 2.4vw;
  font-weight: 700;
  color: #fff;
  background: rgba(204, 0, 0, .8);
  transform: translate(-50%, -50%);
}

#tour .tourListFinal {
  width: 100%;
  padding: 0 3.5vw;
  margin: 0 0 5vw;
  list-style: none;
}

#tour .tourListFinal li {
  width: 100%;
  padding: 4vw 3vw;
  margin-bottom: 2vw;
  font-size: 5vw;
  line-height: 1;
  color: #fff;
  background: #d00;
  font-weight: 800;
}

#tour .tourListFinal li span {
  display: inline-block;
  margin-right: .2em;
}

#tour .tourListFinal li small {
  display: inline-block;
  font-size: .7em;
  margin-right: .2em;
}

#tour .tourListFinal li .avenue {
  margin-bottom: 1vw;
}

#tour .tourListFinal li .subTitle {
  display: inline-block;
  margin-bottom: .6em;
  font-size: 4vw;
  line-height: 1;
  color: #ffdd16;
}

#tour .tourListFinal li .new:after {
  display: inline-block;
  content: 'NEW';
  padding: .3em;
  margin-left: .6em;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: .5em;
  color: #D00;
  background: #ffdd16;
  vertical-align: middle;
}

#tour .tourListOther {
  width: 100%;
  padding: 0 3.5vw;
  margin: 0 0 5vw;
  list-style: none;
}

#tour .tourListOther li {
  width: 100%;
  padding: 4vw 3vw;
  margin-bottom: 2vw;
  font-size: 4vw;
  line-height: 1;
  color: #fff;
  background: #1e8f17;
  text-align: left;
  font-weight: 800;
}

#tour .tourListOther li span {
  display: inline-block;
  margin-right: .2em;
}

#tour .tourListOther li small {
  display: inline-block;
  font-size: .7em;
  margin-right: .2em;
}

#tour .tourListOther li .avenue {
  margin-bottom: 1vw;
}

#tour .tourListOther li .subTitle {
  display: inline-block;
  padding-top: .2em;
  margin-bottom: .6em;
  font-size: 4vw;
  line-height: 1;
  color: #ffdd16;
}

#tour > h3 {
  width: 100%;
  padding: 3vw 5vw 2vw;
  margin-bottom: 5vw;
  background: #e60012;
  color: #fff;
  text-align: center;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 8vw;
  font-weight: 800;
  line-height: 1.2;
}

#tour > h3 img {
  width: 50vw;
}

#tour > h3:nth-of-type(2) {
  background: #1e8f17;
}

#tour > h3 span {
  display: inline-block;
  font-size: .9em;
  transform: translate(0, -5%);
}

#tour > h4 {
  padding: .15em 0;
  margin-bottom: 2vw;
  font-size: 5vw;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#tour > h4:nth-of-type(1) {
  background: #0042ff;
}

#tour > h4:nth-of-type(2) {
  background: #2ab000;
}

#tour .attention {
  padding: 0 3.5vw;
  text-align: right;
}

.modal.modal1st .modal-background {
  background-color: rgba(17, 17, 17, .85);
}

.modal.modal1st .modal-content {
  background: transparent;
  text-align: center;
  color: #fff;
  font-weight: 800;
}

.modal.modal1st .modal-content h4, .modal.modal1st .modal-content h5 {
  margin-bottom: 10px;
}

.modal.modal1st .modal-content .closeBtn {
  font-size: 20px;
}

.modal.modal1st .modal-content .message-body {
  padding: 0;
}

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

.modal.modal1st .modal-content .message-header {
  padding: 15px 15px 0;
}

.modal.modal1st .modal-content .videoTrigger {
  height: 52vw;
  margin-bottom: 2vw;
  border: 0;
}

#footer {
  width: 100%;
  padding: 7vw 0 6vw;
  text-align: center;
  background: #000;
  color: #fff;
  border-top: 4px solid #fff;
}

#footer img {
  width: 38%;
  margin-bottom: 10px;
}

#footer .address {
  margin-bottom: 0;
  font-size: 12px;
  font-family: "Oswald", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 10000;
  transition: all linear .5s;
  opacity: 1;
}

.openLoader.is-hide {
  opacity: 0;
  pointer-events: none;
}

.openLoader .loader {
  color: #d00;
  font-size: 1em;
  z-index: 10000;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(221, 0, 0, .3);
  border-right: 0.6em solid rgba(221, 0, 0, .3);
  border-bottom: 0.6em solid rgba(221, 0, 0, .3);
  border-left: .6em solid #d00;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  transition: all ease-in-out .5s;
  border-radius: 50%;
  z-index: 0;
}

.loader.is-active {
  z-index: 100;
}

.gNav {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #fff;
}

.gNav:last-child {
  border-top: 1px solid #fff;
  border-bottom: none;
}

.gNav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  list-style: none;
}

.gNav li {
  width: 25%;
  border-right: 1px solid #fff;
}

.gNav li a {
  display: inline-block;
  width: 100%;
  padding: 5px 5px 7px;
  background: #b49769;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.gNav li span {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 0 5px;
}

.gNav li small {
  display: inline-block;
  width: 100%;
  padding: 5px 0 5px;
  font-size: 11px;
  border-bottom: 2px solid #fff;
}

.gNav li:nth-child(4) {
  border-right: 0;
}

.gNav:first-child {
  border-bottom: 2px solid #fff;
}

#interview {
  padding: 0;
}

#interview #main {
  padding: 4vw 3.5vw;
  background: rgba(255, 255, 255, .8);
}

.bnrInt {
  margin-bottom: 10vw;
}

.interviewBody {
  font-size: 3.6vw;
}

.interviewBody img {
  vertical-align: bottom;
}

.interviewBody figure {
  margin-bottom: 2em;
}

.interviewBody figure:last-child {
  margin-bottom: 0;
}

.interviewBody p {
  text-align: justify;
  margin-bottom: 2em;
  color: #333;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, .8), 2px 2px 2px rgba(255, 255, 255, .8), 2px 2px 2px rgba(255, 255, 255, .8);
}

.interviewBody p.int00 {
  padding-left: 0;
  text-indent: 0;
  color: #e00;
  font-weight: 600;
}

.interviewBody p.int01 b {
  color: #e00;
}

.interviewBody p.int02 b {
  color: #fb7d01;
}

.interviewBody p.int03 b {
  color: #004ea2;
}

.interviewBody p.int04 b {
  color: #26a100;
}

.interviewBody p.int05 b {
  color: #000;
}

.interviewBody p.int06 b {
  color: #7e2bcd;
}

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

.interviewBody p:last-child {
  margin-bottom: 0;
}

.interviewBody p b {
  display: inline-block;
  margin-right: .4em;
  font-weight: 800;
  text-indent: 0;
}

.interviewBody p strong {
  text-indent: 0;
  font-weight: 800;
}

.interviewBody .back {
  text-align: left;
}

.interviewBody .back .button {
  color: #000;
  font-weight: 600;
  background: #b49769;
}

.pagenation {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  width: 100%;
  margin: 0;
  list-style: none;
}

.pagenation:nth-child(1) {
  padding: 2vw 0 6vw;
  margin-bottom: 8vw;
  border-bottom: 2px solid #000;
}

.pagenation:nth-child(3) {
  padding: 6vw 0 5vw;
  margin-top: 8vw;
  border-top: 2px solid #000;
}

.pagenation li {
  padding: 0 5px;
}

.pagenation li.is-current a {
  background: #d00;
  color: #fff;
}

.pagenation a {
  display: inline-block;
  padding: .4em .9em;
  border-radius: 4px;
  line-height: 1.4;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-weight: 600;
}

.pagenationTitle {
  padding-top: 50px !important;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px !important;
  text-align: left !important;
}

.pagenationTitle:before {
  display: inline-block;
  content: '■';
  margin-right: .1em;
}

.pagenation.pagenation2 {
  justify-content: flex-start;
}

@media screen and (max-width: 374px) {
  .pagenation li {
    padding: 0 3px;
  }
  .pagenation a {
    padding: 5px 9px;
    font-size: .825em;
  }
}

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

.black {
  color: #111 !important;
}

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

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

.orange {
  color: #fb7818 !important;
}

.red {
  color: #d00 !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: #d00 !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: 50%;
  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;
}
