@charset "UTF-8";
/*==============================
-Import Files
===============================*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: 'College-sans';
  src: url('../fonts/CollegeSans.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'impact';
  src: url('../fonts/impact.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

/*==============================
 root.scss
===============================*/
:root {
  --container-desktop: 1280px;
  --grid-gutter: 50px;
}

body {
  font-family: 'Noto Sans JP', -apple-system, sans-serif !important;
}

/* =======  ドラッグした時のカラーを指定 ======= */
::-moz-selection {
  background: #000;
  color: #ffffff;
}
::selection {
  background: #000;
  color: #ffffff;
}

?
::-moz-selection {
  background: #000;
  color: #ffffff;
}

/*==============================
-Variable
===============================*/
/* ======= mixin breakpoint ======= */
/* ======= prefix ======= */
/* ======= positioncenter ======= */
/* ==============================
-Global
=============================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  height: 100%;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a, a:hover {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  outline: none;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  max-width: 100%;
}

h1 {
  font-size: 3.6rem;
  font-weight: bold;
}

h2 {
  font-size: 3rem;
  font-weight: bold;
}

h3 {
  font-size: 2.4rem;
  font-weight: bold;
}

h4 {
  font-size: 1.8rem;
  font-weight: bold;
}

h5 {
  font-size: 1.4rem;
  font-weight: bold;
}

h6 {
  font-size: 1.2rem;
  font-weight: bold;
}

p {
  font-size: 1.2rem;
  font-weight: 400;
}

a {
  font-size: 1.2rem;
}

#wpadminbar {
  position: fixed !important;
}
@media only screen and (max-width: 767px) {
  #wpadminbar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-container {
    padding: 0 !important;
  }
}

/* ===== @class ===== */
.l-container {
  margin: 0 auto;
  max-width: calc( 1280px + 50px);
  padding: 0 calc( 50px / 2);
}

.l-container.p-system {
  margin-top: 100px;
}

.customize-support .l-container {
    margin: 0 auto;
    max-width: calc( 1280px + 50px);
    padding: 0 calc( 50px / 2) 0;
}
@media only screen and (max-width: 767px) {
  .l-container {
    max-width: calc(100%);
  }
}
@media only screen and (max-width: 767px) {
  .l-container .l-full,
  .l-container .l-laid {
    margin-left: calc( 50px / -2);
    margin-right: calc( 50px / -2);
  }
}

.l-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
       flex-flow: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc( 50px / -2);
  margin-right: calc( 50px / -2);
}

.l-full,
.l-laid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
       flex-flow: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

[class*="-grid-"] {
  position: relative;
  font-size: 1rem;
}

.l-grid-1 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 1)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 1)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 1)) - 50px);
}

.l-grid-2 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 2)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 2)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 2)) - 50px);
}

.l-grid-3 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 3)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 3)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 3)) - 50px);
}

.l-grid-4 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 4)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 4)) - 50px);
}

.l-grid-5 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 5)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 5)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 5)) - 50px);
}

.l-grid-6 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 6)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 6)) - 50px);
}

.l-grid-7 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 7)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 7)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 7)) - 50px);
}

.l-grid-8 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 8)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 8)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 8)) - 50px);
}

.l-grid-9 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 9)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 9)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 9)) - 50px);
}

.l-grid-10 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 10)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 10)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 10)) - 50px);
}

.l-grid-11 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 11)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 11)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 11)) - 50px);
}

.l-grid-12 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 12)) - 50px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 12)) - 50px - 0.1px);
  margin: 0 calc( 50px / 2);
  max-width: calc(( 100% / ( 12 / 12)) - 50px);
}

.l-grid-auto {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 calc( 50px / 2);
}

.l-tile-grid-1 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 1)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 1)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 1)));
}

.l-tile-grid-2 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 2)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 2)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 2)));
}

.l-tile-grid-3 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 3)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 3)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 3)));
}

.l-tile-grid-4 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 4)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 4)));
}

.l-tile-grid-5 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 5)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 5)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 5)));
}

.l-tile-grid-6 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 6)));
}

.l-tile-grid-7 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 7)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 7)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 7)));
}

.l-tile-grid-8 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 8)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 8)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 8)));
}

.l-tile-grid-9 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 9)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 9)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 9)));
}

.l-tile-grid-10 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 10)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 10)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 10)));
}

.l-tile-grid-11 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 11)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 11)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 11)));
}

.l-tile-grid-12 {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 12)) - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 12)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 12)));
}

.l-tile-grid-auto {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-offset-left-1 {
  margin-left: calc(( 100% / ( 12 / 1)));
}

.l-offset-left-2 {
  margin-left: calc(( 100% / ( 12 / 2)));
}

.l-offset-left-3 {
  margin-left: calc(( 100% / ( 12 / 3)));
}

.l-offset-left-4 {
  margin-left: calc(( 100% / ( 12 / 4)));
}

.l-offset-left-5 {
  margin-left: calc(( 100% / ( 12 / 5)));
}

.l-offset-left-6 {
  margin-left: calc(( 100% / ( 12 / 6)));
}

.l-offset-left-7 {
  margin-left: calc(( 100% / ( 12 / 7)));
}

.l-offset-left-8 {
  margin-left: calc(( 100% / ( 12 / 8)));
}

.l-offset-left-9 {
  margin-left: calc(( 100% / ( 12 / 9)));
}

.l-offset-left-10 {
  margin-left: calc(( 100% / ( 12 / 10)));
}

.l-offset-left-11 {
  margin-left: calc(( 100% / ( 12 / 11)));
}

.l-offset-left-12 {
  margin-left: calc(( 100% / ( 12 / 12)));
}

.l-offset-right-1 {
  margin-right: calc(( 100% / ( 12 / 1)));
}

.l-offset-right-2 {
  margin-right: calc(( 100% / ( 12 / 2)));
}

.l-offset-right-3 {
  margin-right: calc(( 100% / ( 12 / 3)));
}

.l-offset-right-4 {
  margin-right: calc(( 100% / ( 12 / 4)));
}

.l-offset-right-5 {
  margin-right: calc(( 100% / ( 12 / 5)));
}

.l-offset-right-6 {
  margin-right: calc(( 100% / ( 12 / 6)));
}

.l-offset-right-7 {
  margin-right: calc(( 100% / ( 12 / 7)));
}

.l-offset-right-8 {
  margin-right: calc(( 100% / ( 12 / 8)));
}

.l-offset-right-9 {
  margin-right: calc(( 100% / ( 12 / 9)));
}

.l-offset-right-10 {
  margin-right: calc(( 100% / ( 12 / 10)));
}

.l-offset-right-11 {
  margin-right: calc(( 100% / ( 12 / 11)));
}

.l-offset-right-12 {
  margin-right: calc(( 100% / ( 12 / 12)));
}

@media only screen and (max-width: 767px) {
  [class*="l-offset-left-"] {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-offset-right-"] {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-grid-"] {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(100% - 50px - 0.1px);
        flex-basis: calc(100% - 50px - 0.1px);
    max-width: calc(100% - 50px);
    margin-left: calc( 50px / 2);
    margin-right: calc( 50px / 2);
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-tile-grid-"] {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

/* ===== @mixin ===== */
/*==============================
-Import Project Scss Files
===============================*/
/* ===== Component ===== */
/*==============================
-Component
===============================*/
/*==============================
-c-pagination
===============================*/
.c-pagination-wrapper {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
  background-color: rgba(68, 68, 68, 0.8);
}

.c-pagination {
  width: 100%;
  text-align: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  .c-pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-pagination span,
.c-pagination a {
  display: block;
  font-weight: bold;
  line-height: 1.1;
  margin: 0 1.4px;
  padding: 5px 10px;
  text-decoration: none;
  width: auto;
  color: #ffffff;
  background-color: #000000;
}
@media only screen and (max-width: 767px) {
  .c-pagination span,
  .c-pagination a {
    font-size: 1.2rem;
  }
}

.c-pagination .current {
  font-size: 1.4rem;
  background-color: #e00000;
}

.c-pagination-single-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 0;
  text-align: center;
  margin: 0 auto;
  background-color: #eee;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-wrapper {
    padding: 20px 0;
  }
}

.c-pagination-single-box {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-box {
    font-size: 3rem;
    padding: 0;
  }
}
.c-pagination-single-box:hover .c-pagination-single-img {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  opacity: 0.7;
}
.c-pagination-single-box:hover.c-pagination-single-prev, .c-pagination-single-box:hover.c-pagination-single-next {
  opacity: 1;
}
.c-pagination-single-box:hover .c-pagination-single-prev {
  opacity: 0.7;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.c-pagination-single-box:hover .c-pagination-single-next {
  opacity: 0.7;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.c-pagination-single-djs-box {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0 10px;
  text-decoration: none;
  width: auto;
  color: #ffffff;
  z-index: 0;
  overflow: hidden;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-djs-box {
    padding: 0;
  }
}
.c-pagination-single-djs-box:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  opacity: 0.7;
}

.c-pagination-single-arrow-left {
  content: '';
  display: inline-block;
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  margin: 0 auto;
  height: 2rem;
  width: 2rem;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotate3d(0, 0, 1, 135deg) perspective(0);
          transform: rotate3d(0, 0, 1, 135deg) perspective(0);
  vertical-align: middle;
}

.c-pagination-single-arrow-right {
  content: '';
  display: inline-block;
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  margin: 0 auto;
  height: 2rem;
  width: 2rem;
  -webkit-transform: rotate3d(0, 0, 1, 315deg) perspective(0);
          transform: rotate3d(0, 0, 1, 315deg) perspective(0);
  vertical-align: middle;
}

.c-pagination-single-djs-namearea {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 010px;
}

.c-pagination-single-djs-arrow-left {
  content: '';
  display: inline-block;
  border-right: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
  margin: 0 auto;
  height: 2rem;
  width: 2rem;
  -webkit-transform: rotate3d(0, 0, 1, 135deg) perspective(0);
          transform: rotate3d(0, 0, 1, 135deg) perspective(0);
  vertical-align: middle;
}

.c-pagination-single-djs-arrow-right {
  content: '';
  display: inline-block;
  border-right: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
  margin: 0 auto;
  height: 2rem;
  width: 2rem;
  -webkit-transform: rotate3d(0, 0, 1, 315deg) perspective(0);
          transform: rotate3d(0, 0, 1, 315deg) perspective(0);
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .c-pagination-single-full {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.c-pagination-single-titlearea {
  width: 80%;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  color: #000000;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-titlearea {
    width: 80%;
  }
}

.c-pagination-single-title {
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-title {
    font-size: 1.2rem;
  }
}

.c-pagination-single-date,
.c-pagination-single-date span {
  font-size: 1.0rem;
  letter-spacing: 0px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-date,
  .c-pagination-single-date span {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}

.c-pagination-single-area {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-area {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
        flex-basis: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 50px);
    position: relative;
    margin: 0 calc( 50px / 2);
    padding-left: 5px;
    padding-right: 5px;
  }
}

.c-pagination-single-area-lefttext {
  color: #444;
}

.c-pagination-single-area-righttext {
  text-align: right;
  color: #444;
}

.c-pagination-single-djs-area {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-djs-area {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
        flex-basis: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 50px);
    position: relative;
    margin: 0 calc( 50px / 2);
  }
}

.c-pagination-single-djs-img {
  padding-top: 100%;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}
.c-pagination-single-djs-img::before {
  content: '';
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
}

.c-pagination-single-left {
  margin: 0;
}

.c-pagination-single-right {
  margin: 0;
}

.c-pagination-single-djs-prev {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-djs-prev {
    padding: 10px;
  }
}
.c-pagination-single-djs-prev:hover .c-pagination-single-djs-img::before {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
}

.c-pagination-single-djs-next {
  position: relative;
  display: block;
  width: 100%;
  text-align: right;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-djs-next {
    padding: 10px;
  }
}
.c-pagination-single-djs-next:hover .c-pagination-single-djs-img::before {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
}

.c-pagination-single-prev {
  width: 100%;
  text-align: left;
  padding: 10px;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-prev {
    padding: 5px;
  }
}

.c-pagination-single-next {
  width: 100%;
  text-align: right;
  padding: 5px;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .c-pagination-single-next {
    padding: 10px;
  }
}

.c-pagination-single-img {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}
.c-pagination-single-img::before {
  content: '';
  background-color: transparent;
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
}

/*==============================
-Loading
===============================*/
.c-loading-wrapper {
  position: fixed;
  background-color: #000000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  -webkit-animation: c-loading-end 1.4s ease-out 2.4s both;
  animation: c-loading-end 1.4s ease-out 2.4s both;
  z-index: -10;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}

@-webkit-keyframes c-loading-end {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) perspective(0);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1) perspective(0);
    opacity: 1;
    z-index: 99999;
  }
  99% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(3, 2, 1) perspective(0);
            transform: translate3d(0, 0, 0) scale3d(3, 2, 1) perspective(0);
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
  100% {
    display: none;
    z-index: -99999;
  }
}
@keyframes c-loading-end {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) perspective(0);
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1) perspective(0);
    opacity: 1;
    z-index: 99999;
  }
  99% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(3, 2, 1) perspective(0);
            transform: translate3d(0, 0, 0) scale3d(3, 2, 1) perspective(0);
    opacity: 0;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
  100% {
    display: none;
    z-index: -99999;
  }
}
.c-loading-area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) perspective(0);
          transform: translate3d(-50%, -50%, 0) perspective(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
  top: calc(50% - 30px);
  text-align: center;
}

.c-loading-areapicture {
  width: 500px;
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .c-loading-areapicture {
    width: 250px;
    height: 250px;
  }
}

@-webkit-keyframes c-loading-logo {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  30% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  35% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  60% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  65% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  90% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  95% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}
@keyframes c-loading-logo {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  50% {
    stroke-dashoffset: 0;
    fill: transparent;
    stroke: #ffffff;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}
.c-loading-line-cyber {
  fill: #ffffff;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  stroke-width: 2;
  -webkit-transform: translate3d(0, 0, 0) perspective(0);
          transform: translate3d(0, 0, 0) perspective(0);
  -webkit-animation: c-loading-logo 2.4s ease-in 0.1s both;
  animation: c-loading-logo 2.4s ease-in 0.1s both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}

.c-loading-line-cyber-text {
  fill: #ffffff;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  stroke-width: 2;
  -webkit-transform: translate3d(0, 0, 0) perspective(0);
          transform: translate3d(0, 0, 0) perspective(0);
  -webkit-animation: c-loading-text 1.8s ease-in 1.0s both;
  animation: c-loading-text 1.8s ease-in 1.0s both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}

@-webkit-keyframes c-loading-text {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}

@keyframes c-loading-text {
  0% {
    stroke-dashoffset: 3000;
    fill: transparent;
    stroke: #ffffff;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}
/*==============================
-Component
===============================*/
.c-text-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 120px 0;
}

.c-text-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
       justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
       align-items: center;
}

.c-text-lead, .c-pagination span,
.c-pagination a, .c-pagination-single-date,
.c-pagination-single-date span, .c-pagination-single-area-lefttext, .c-pagination-single-area-righttext, .p-privacy-header, .p-privacy-header span, .p-privacy-text, .p-privacy-lead, .p-privacy-title, .p-privacy-desc {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .c-text-lead, .c-pagination span,
  .c-pagination a, .c-pagination-single-date,
  .c-pagination-single-date span, .c-pagination-single-area-lefttext, .c-pagination-single-area-righttext, .p-privacy-header, .p-privacy-header span, .p-privacy-text, .p-privacy-lead, .p-privacy-title, .p-privacy-desc {
    font-size: 1.6rem;
  }
}

.c-text-bg, .c-pagination-single-djs-img, .c-pagination-single-img {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-text-bg::before, .c-pagination-single-djs-img::before, .c-pagination-single-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.c-text-center {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) perspective(0);
          transform: translate3d(-50%, -50%, 0) perspective(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}

.c-text-btn {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  padding: 20px 15px;
  margin: 20px auto 0 auto;
  background-color: #000000;
  border: 2px solid #000000;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  cursor: pointer;
}
@media only screen and (max-width: 1170px) {
  .c-text-btn {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-btn {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-indent: 2px;
    margin: 0 auto 20px auto;
    padding: 15px 3px;
  }
}
.c-text-btn:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  color: #000000;
  background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .c-text-display-pc {
    display: none;
  }
}

.c-text-display-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-text-display-sp {
    display: block;
  }
}

.c-text-break-pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-text-break-pc {
    display: inline;
  }
}

.c-text-break-sp {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .c-text-break-sp {
    display: block;
  }
}

.c-text-crumbs-area {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.c-text-crumbs-area a {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .c-text-crumbs-area {
    margin-bottom: 40px;
  }
}

.c-text-crumbs {
  display: block;
  width: 100%;
}

.c-text-crumbs li {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.1;
  text-align: left;
  margin-left: 2px;
  margin-right: 2px;
}
@media only screen and (max-width: 767px) {
  .c-text-crumbs li {
    font-size: 1.4rem;
  }
}

.c-text-crumbs li a {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.1;
  text-align: left;
  text-decoration: underline;
  margin-left: 2px;
  margin-right: 2px;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}
.c-text-crumbs li a:hover {
  opacity: 0.7;
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
}
@media only screen and (max-width: 767px) {
  .c-text-crumbs li a {
    font-size: 1.2rem;
  }
}

.c-text-btn-area {
  display: block;
  text-align: center;
  padding: 0 0 40px 0;
}
@media only screen and (max-width: 767px) {
  .c-text-btn-area {
    padding: 0 0 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-text-btn-area-sp {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
        flex-basis: calc( ( 100% / ( 12 / 6)) - 50px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 50px);
    position: relative;
    margin: 0 calc( 50px / 2);
    margin-left: calc(( 100% / ( 12 / 3)) + ( 50px / 2));
    margin-right: calc(( 100% / ( 12 / 3)) + ( 50px / 2));
    margin-left: calc(( 100% / ( 12 / 3)) + ( 50px / 2));
    margin-right: calc(( 100% / ( 12 / 3)) + ( 50px / 2));
  }
}

.c-text-btn-item {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  padding: 8px 5px;
  margin: 0 auto;
  background-color: #000000;
  border: 1px solid #000000;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
@media only screen and (max-width: 1170px) {
  .c-text-btn-item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-btn-item {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 1px;
    padding: 10px;
    text-align: center;
  }
}
.c-text-btn-item::before {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-animation: c-text-btn-item-fadeout-before 0.45s cubic-bezier(0.86, 0.3, 0.37, 1) 0s forwards;
  animation: c-text-btn-item-fadeout-before 0.45s cubic-bezier(0.86, 0.3, 0.37, 1) 0s forwards;
}
.c-text-btn-item:hover {
  cursor: pointer;
  color: #000000;
  -webkit-transition: ease-in .4s;
  -o-transition: ease-in .4s;
  transition: ease-in .4s;
}
.c-text-btn-item:hover::before {
  content: '';
  position: absolute;
  -webkit-animation: c-text-btn-item-fadein-before 0.4s cubic-bezier(0.86, 0, 0.07, 1) 0s forwards;
  animation: c-text-btn-item-fadein-before 0.4s cubic-bezier(0.86, 0, 0.07, 1) 0s forwards;
}

@-webkit-keyframes c-text-btn-item-fadein-before {
  0% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes c-text-btn-item-fadein-before {
  0% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes c-text-btn-item-fadeout-before {
  0% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@keyframes c-text-btn-item-fadeout-before {
  0% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
/*==============================
-c-form-confirmation.scss
===============================*/
.c-form-confirmation-body {
  background: #ffffff;
}

.c-form-confirmation-inner {
  padding-top: 120px;
  color: #000000;
}

.c-form-confirmation-lead {
  padding-top: 15px;
}

.c-form-confirmation-table {
  width: 100%;
  margin: 60px 0 40px 0;
}

.c-form-confirmation-table {
  display: inline-table;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.c-form-confirmation-li-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.c-form-confirmation-li-lead {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  font-weight: 100;
}

.c-form-confirmation-submit-btn {
  background: #000000;
  border: 2px solid #000000;
  color: #fff;
  padding: 20px 15px;
  width: 80%;
  margin-top: 15px;
  outline: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
}
.c-form-confirmation-submit-btn:hover {
  background: none;
  color: #000000;
}

.c-form-confirmation-return-btn, .c-form-confirmation-return-btn-error {
  background: #aaa;
  border: 2px solid #aaa;
  color: #111;
  padding: 20px 15px;
  width: 80%;
  margin-top: 15px;
  outline: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
}
.c-form-confirmation-return-btn:hover, .c-form-confirmation-return-btn-error:hover {
  background: none;
  color: #aaa;
}

.c-form-confirmation-return-btn-error {
  width: 100px;
  padding: 10px 15px;
}

.c-form-confirmation-center {
  text-align: center;
}

.c-form-confirmation-footer {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 20px 0;
  margin-top: 70px;
}

p.error_messe {
  margin: 5px 0;
  color: red;
}

/*==============================
-c-form-thanks.scss
===============================*/
.c-form-thanks-wrapper {
  width: 100%;
  text-align: center;
}

.c-form-thanks-inner {
  padding: 200px 0;
}
@media only screen and (max-width: 767px) {
  .c-form-thanks-inner {
    padding: 120px 0;
  }
}

.c-form-thanks-heading {
  font-size: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .c-form-thanks-heading {
    font-size: 2rem;
  }
}

.c-form-thanks-line {
  width: 40%;
  height: 2px;
  margin: 25px auto 30px auto;
}

.c-form-thanks-lead {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-form-thanks-lead {
    font-size: 1.4rem;
  }
}

.c-form-thanks-anchor-btn {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 10px;
  outline: none;
  border: none;
  width: 60%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background-color: #600b0b;
  border: 2px solid #600b0b;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
@media only screen and (max-width: 767px) {
  .c-form-thanks-anchor-btn {
    width: 80%;
  }
}
.c-form-thanks-anchor-btn:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  cursor: pointer;
  background-color: #ffffff;
  border: 2px solid #600b0b;
  color: #600b0b;
}

/*==============================
-Page
===============================*/
.c-form-wrapper {
  padding: 60px 0 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .c-form-wrapper {
    padding: 50px 0 0;
  }
}

.c-form-subheader {
  position: relative;
  display: block;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.4rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .c-form-subheader {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.2rem;
    letter-spacing: 1rem;
    letter-spacing: 0.6rem;
    padding-left: 2px;
  }
}

.p-form-subheader-lead {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  .p-form-subheader-lead {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
  }
}

.c-form-text-area {
  margin-top: 120px;
}

.c-form-text {
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 80px;
}

.c-form {
  padding: 0 0 100px;
}
@media only screen and (max-width: 900px) {
  .c-form {
    padding: 50px 0;
  }
}

.c-form-contents-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.c-form-index {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-form-index {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 5px;
  }
}

.c-form-required {
  color: #c00;
  vertical-align: middle;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.c-form-optional {
  background-color: #444;
  color: #ffffff;
  padding: 2px 5px;
  vertical-align: middle;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.c-form-index-formlabel select,
.c-form-index-formlabel select option {
  border: solid 1px #888;
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-form-index-formlabel select,
  .c-form-index-formlabel select option {
    font-size: 1.6rem;
  }
}

.c-form-select {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  color: #fff;
}

.c-form-index-formlabel select option {
  color: #000;
}

.c-form-index-select::before {
  content: "\f0d7";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 10px;
  font-size: 2rem;
  font-weight: 900;
  font-family: "FontAwesome";
  color: #333;
}

.c-form-index-formarea {
  border: solid 1px #888;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .c-form-index-formarea {
    font-size: 1.6rem;
  }
}

.c-form-index-formattachment {
  color: #333;
  font-size: 1.6rem;
  padding: 10px 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .c-form-index-formattachment {
    font-size: 1.6rem;
  }
}

textarea.c-form-index-formarea {
  font-family: sans-serif;
  border: solid 1px #888;
  color: #FFF;
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  textarea.c-form-index-formarea {
    font-size: 1.6rem;
  }
}

#c-form-submit {
  width: 100%;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

::-moz-placeholder {
  /* Others */
  color: #ccc;
}

::-ms-input-placeholder {
  /* Others */
  color: #ccc;
}

::placeholder {
  /* Others */
  color: #ccc;
}

.c-form-privacy {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.c-form-privacy-link-area {
  display: block;
  height: 160px;
  overflow-y: scroll;
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  border: 1px solid #ccc;
}

.c-form-privacy-title {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
  color: #fff;
}

.c-form-privacy-descarea {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .c-form-privacy-descarea {
    font-size: 1.1rem;
    font-weight: 100;
  }
}

.c-form-privacy-link {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #e00000;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  text-decoration: underline;
}
.c-form-privacy-link:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  opacity: 0.7;
}

.c-form-index-lead {
  display: block;
  margin: 0 auto;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #111;
  background-color: #eee;
  padding: 10px;
}

.c-form-att-text {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 10px;
  background-color: #eee;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #e00000;
}

.c-form-checkarea {
  color: #fff;
  margin-bottom: 20px;
  padding: 10px 0;
}
.c-form-checkarea input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.c-form-checkarea input[type="radio"] + .c-form-contact-check {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 10px;
}
.c-form-checkarea input[type="radio"] + .c-form-contact-check:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -0.2em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.c-form-checkarea input[type="radio"]:checked + .c-form-contact-check:before {
  background-color: #600b0b;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}
.c-form-checkarea input[type="radio"]:focus + .c-form-contact-check:before {
  outline: none;
  border-color: #600b0b;
}
.c-form-checkarea input[type="radio"] + .c-form-contact-check:empty:before {
  margin-right: 0;
}
.c-form-checkarea input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.c-form-checkarea input[type="checkbox"] + .c-form-contact-check {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 10px;
}
.c-form-checkarea input[type="checkbox"] + .c-form-contact-check:before {
  content: '';
  background: #f4f4f4;
  border-radius: 14%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.c-form-checkarea input[type="checkbox"]:checked + .c-form-contact-check:before {
  background-color: #600b0b;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}
.c-form-checkarea input[type="checkbox"]:focus + .c-form-contact-check:before {
  outline: none;
  border-color: #600b0b;
}
.c-form-checkarea input[type="checkbox"] + .c-form-contact-check:empty:before {
  margin-right: 0;
}

.c-form-btn-area {
  display: block;
  text-align: center;
  padding: 0 0 40px 0;
}
@media only screen and (max-width: 767px) {
  .c-form-btn-area {
    padding: 0 0 20px 0;
  }
}

.c-form-btn-item {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #ffffff !important;
  padding: 20px 15px;
  margin: 20px auto 0 auto;
  background-color: #600b0b;
  border: 2px solid #600b0b;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  cursor: pointer;
}
@media only screen and (max-width: 1170px) {
  .c-form-btn-item {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-form-btn-item {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-indent: 2px;
    margin: 0 auto 20px auto;
    padding: 15px 3px;
  }
}
.c-form-btn-item:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  color: #600b0b !important;
  background-color: #ffffff;
}
.c-form-btn-item:disabled {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  opacity: 0.7;
}
.c-form-btn-item:disabled:hover {
  cursor: default;
  background-color: #333;
  border: 2px solid #333;
  color: #ffffff !important;
}

.c-form-return-item {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #444 !important;
  padding: 20px 15px;
  margin: 20px auto 0 auto;
  background-color: #ffffff;
  border: 2px solid #444;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  cursor: pointer;
}
@media only screen and (max-width: 1170px) {
  .c-form-return-item {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-form-return-item {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-indent: 2px;
    margin: 0 auto 20px auto;
    padding: 15px 3px;
  }
}
.c-form-return-item:hover {
  -webkit-transition: ease .2s;
  -o-transition: ease .2s;
  transition: ease .2s;
  color: #ffffff !important;
  background-color: #444;
}

/*==============================
-c-header
===============================*/
.c-header-logo {
  position: fixed;
  top: 5%;
  left: 70px;
  left: 38px;
  width: 80px;
  width: 150px;
  z-index: 9999;
}
@media only screen and (max-width: 1280px) {
  .c-header-logo {
    left: 3.7%;
    width: 4vw;
    left: 2.5%;
    width: 8vw;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-logo {
    width: 40px;
    width: 70px;
    top: 3.3%;
    left: 4%;
    left: 3%;
  }
}

.header-nav-left-wrap {
  position: fixed;
  width: 230px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  border-right: 1px solid #fff;
  z-index: 9998;
}
@media only screen and (max-width: 1280px) {
  .header-nav-left-wrap {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .header-nav-left-wrap {
    display: none;
  }
}

.header-nav-left-list-box {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.c-header-nav-left-list-in {
  padding: 4rem 0;
}

.c-header-nav-left-list-link {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2rem;
  letter-spacing: 5px;
}
.c-header-nav-left-list-link:hover {
  color: #e00000;
}

/*==============================
_c-header-triger
===============================*/
.c-header-triger {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  margin: 0.5rem 0;
  z-index: 9999999;
  cursor: pointer;
}
@media only screen and (max-width: 970px) {
  .c-header-triger {
    display: block;
    top: 3px;
    right: 17px;
  }
}

.c-header-triger-bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background: #fff;
  display: block;
  z-index: 9999999;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.c-header-triger-bar:nth-of-type(1) {
  top: 11px;
  border-radius: 4px 4px 4px 4px;
}

.c-header-triger-bar:nth-of-type(2) {
  top: 25px;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.c-header-triger-bar:nth-of-type(3) {
  top: 40px;
  border-radius: 4px 4px 4px 4px;
}

.c-header-triger-bar.active:nth-of-type(1) {
  background: #fff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 22px;
}

.c-header-triger-bar.active:nth-of-type(2) {
  background: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
  right: 40px;
  display: none;
}

.c-header-triger-bar.active:nth-of-type(3) {
  background: #fff;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 22px;
}

.c-header-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 350px;
  padding-top: 1rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: table;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateX(20%);
      -ms-transform: translateX(20%);
          transform: translateX(20%);
  border-left: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .c-header-nav {
    width: 100%;
    border-left: none;
  }
}
.c-header-nav.active {
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.c-header-nav-grid {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}

.c-header-nav-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.c-header-nav-list-in {
  text-align: center;
}

.c-header-nav-list-link {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.4rem;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  display: block;
  padding: 20px 0;
}
.c-header-nav-list-link:hover {
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  color: #e00000;
}
.c-header-nav-list-link.private {
  color: #444444;
  text-shadow: none;
}
.c-header-sns-bar{
  position: absolute;
  z-index: 20;
  top: 50px;
  right: 230px;
  width: 12%;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-header-sns-bar .c-footer-info-sns-list-in{
  margin-right: 0;
  margin-left: 2rem;
}
@media only screen and (max-width: 767px){

  .c-header-sns-bar{
    top: 70px;
    right: 20px;
    width: 70%;
  }
}

/*==============================
-c-footer
===============================*/
.c-footer-wrap {
  background-color: #212121;
  color: #fff;
  padding: 70px 0;
}

.c-footer-info-wrap-top {
  padding-left: 50px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-wrap-top {
    padding: 0 30px;
  }
}

.c-footer-info-header {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-header {
    font-size: 2rem;
  }
}

.c-footer-info-border {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #9a9a9a;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-border {
    margin-bottom: 1.5rem;
  }
}

.c-footer-info-club {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-club {
    font-size: 1.6rem;
  }
}

.c-footer-info-textbox p, .c-footer-info-textbox a {
  font-size: 1.4rem;
}

.c-footer-info-time {
  font-weight: 300;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-time {
    font-size: 1.3rem;
  }
}

.c-footer-info-address {
  font-weight: 300;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-address {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.c-footer-info-station {
  font-weight: 300;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-station {
    font-size: 1.3rem;
  }
}

.c-footer-info-tel {
  font-weight: 300;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-tel {
    font-size: 1.3rem;
  }
}

.c-footer-info-tel-link {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-tel-link {
    font-size: 1.3rem;
  }
}
.c-footer-info-tel-link:hover {
  color: #e00000;
}

.c-footer-info-googlemap {
  display: inline-block;
  color: #212121;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.7rem 2rem 0.8rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border: 1px solid #fff;
}
.c-footer-info-googlemap:hover {
  color: #fff;
  background-color: #212121;
}

.c-footer-info-sns-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.c-footer-info-sns-list-in {
  margin-right: 2rem;
}

.c-footer-info-sns-link {
  font-size: 2.4rem;
  color: #fff;
}
.c-footer-info-sns-link .fab {
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

.c-footer-info-linklist {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-linklist {
    font-size: 1.3rem;
  }
}

.c-footer-info-linklist-link {
  color: #fff;
  font-size: 1.5rem;
}
@media only screen and (max-width: 900px) {
  .c-footer-info-linklist-link {
    font-size: 1.3rem;
  }
}
.c-footer-info-linklist-link:hover {
  color: #34d298;
}

.c-footer-copy {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.3rem;
}

.c-footer-top-page-link{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #FFF;
  width: 100%;
  margin-top: 25px;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
h4.c-footer-top-presentation-text-link{
  margin: 20px 0;
}
.c-footer-image-link{

}
img.c-footer-image-logo{
  width: 110px;
  margin-left: 50px;
}

@media only screen and (max-width: 900px){
  .c-footer-top-page-link{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  h4.c-footer-top-presentation-text-link{

  }
  .c-footer-image-link{
    
  }
  img.c-footer-image-logo{
    margin-left: 0;
  }
}

/*==============================
-Component
===============================*/
.c-modal-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  margin: 0 auto;
  z-index: 9999;
}
.c-modal-wrapper.active {
  -webkit-animation: c-modal-close-anime 2.4s both 0s ease-out;
  animation: c-modal-close-anime 2.4s both 0s ease-out;
}

@-webkit-keyframes c-modal-close-anime {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -9999;
  }
}
@keyframes c-modal-close-anime {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -9999;
  }
}
.c-modal-box {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: 100vh;
  text-align: center;
  margin: 0 auto;
  overflow-y: scroll;
  ms-overflow-style: none;
  scrollbar-width: none;
}
.c-modal-box::-webkit-scrollbar {
  display: none;
}

/* ポップアップの内容 */
.c-modal-content {
  margin: 100px auto;
  width: 100%;
}

.c-modal-img-link {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 999;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-modal-img-link {
    width: 100%;
  }
}

.c-modal-img {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 999;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-modal-img {
    width: 100%;
  }
}

.c-modal-content-box {
  position: relative;
  width: 70%;
  height: auto;
  text-align: center;
  z-index: 999;
  margin: 0 auto;
}

.top-video-wrapper {
  background: #000;
  padding-top: 3%;
  padding-bottom: 3%;
}
.top-video-box {
  width: calc(100% - 230px);
  margin: 0 0 0 auto;
  position: relative;
  text-align: center;
}
video.top-video {
  width: 75%;
}


@media only screen and (max-width: 1200px) {
  .top-video-box {
    width: 100%;
  }
  .c-modal-content-box {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {

  video.top-video {
    width: 90%;
  }
  .c-modal-content-box {
    width: 90%;
  }
}

.c-modal-close-btn {
  font-size: 3rem;
  color: #000;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 999;
}
.c-modal-close-btn:hover {
  cursor: pointer;
}

.c-modal-video {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-modal-video {
    max-width: 100%;
  }
}

/*==============================
-c-all
===============================*/
.c-all-contents-wrap {
  width: calc(100% - 230px);
  margin: 0 0 0 auto;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  .c-all-contents-wrap {
    width: calc(100% - 12%);
  }
}
@media only screen and (max-width: 1280px) {
  .c-all-contents-wrap {
    width: 100%;
    margin: 0 auto;
  }
}

.c-all-page-mv-wrap {
  position: relative;
  padding-top: 400px;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 1280px) {
  .c-all-page-mv-wrap {
    padding-top: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .c-all-page-mv-wrap {
    padding-top: 200px;
  }
}
.c-all-page-mv-wrap .c-all-page-mv-color {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 0;
}
.customize-support .c-all-page-mv-wrap {
    margin-bottom: 40px;
}


.c-all-page-header {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(65%) translateX(-50%);
      transform: translateY(65%) translateX(-50%);
  -webkit-transform: translateY(65%) translateX(-50%);
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3vw;
  font-weight: 400;
  text-align: center;
  text-indent: 1vw;
  letter-spacing: 1vw;
  line-height: 1.5;
  min-width: 36%;
  padding: 35px 2vw;
  background-color: #212121;
  z-index: 1;
}
@media only screen and (max-width: 1280px) {
  .c-all-page-header {
    -ms-transform: translateY(60%) translateX(-50%);
        transform: translateY(60%) translateX(-50%);
    -webkit-transform: translateY(60%) translateX(-50%);
    font-size: 3vw;
    padding: 35px 3vw;
  }
}
@media only screen and (max-width: 900px) {
  .c-all-page-header {
    font-weight: 600;
    letter-spacing: 8px;
    -ms-transform: translateY(50%) translateX(-50%);
        transform: translateY(50%) translateX(-50%);
    -webkit-transform: translateY(50%) translateX(-50%);
    font-size: 2.5rem;
    width: 80%;
    padding: 24px 3vw;
  }
}
.c-all-page-header span {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.3vw;
}
@media only screen and (max-width: 1600px) {
  .c-all-page-header span {
    font-size: 1.3vw;
  }
}
@media only screen and (max-width: 900px) {
  .c-all-page-header span {
    font-size: 1.3rem;
  }
}

.c-all-page-main-wrap {
  position: relative;
  background-color: #212121;
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
          box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.c-all-page-mv-wrap.c-page-mission-mv-wrap {
  padding-top: 300px;
}

/*==============================
-c-contact
===============================*/
.c-contact-box {
  margin: 10rem 0 5rem;
}

.c-contact-us-wrapper {
  margin: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .c-contact-us-wrapper {
    margin: 2rem 0;
  }
}

.c-contact-us-bg {
  color: #eee;
  margin: 70px 0 100px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .c-contact-us-bg {
    padding-bottom: 20px;
  }
}

.c-contact-text-heading {
  color: #eee;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.c-contact-text-heading::after {
  background: #eee;
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
  height: 1px;
  width: 3rem;
}
.c-contact-text-heading + .c-contact-text-lead {
  margin-top: 3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-contact-text-heading {
    font-size: 1.8rem;
  }
}
.c-contact-text-heading + .c-contact-text-subheading {
  margin-top: 3rem;
}

.c-contact-us-concierge-contact-wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 900px) {
  .c-contact-us-concierge-contact-wrap {
    margin: 0 auto;
    padding-bottom: 1rem;
  }
}

.c-contact-us-concierge-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .7rem 0;
}

.c-contact-us-concierge-icon {
  width: 25px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .c-contact-us-concierge-icon {
    width: 30px;
  }
}

.c-contact-us-concierge-url {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .c-contact-us-concierge-url {
    font-size: 1.6rem;
  }
}

.c-contact-us-concierge-url-key {
  color: #F0D481;
}

.c-contact-lead-wrapper {
  padding: 2rem 0;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .c-contact-lead-wrapper {
    max-width: 320px;
    padding: 1rem 0;
  }
}

.c-contact-flags {
  width: 29px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  .c-contact-flags {
    width: 22px;
    height: 15px;
  }
}

.c-contact-lead {
  font-size: 1.8rem;
  text-align: left;
}
@media only screen and (max-width: 900px) {
  .c-contact-lead {
    font-size: 1.6rem;
  }
}
.c-contact-lead + .c-contact-lead {
  margin-top: 10px;
}
@media only screen and (max-width: 900px) {
  .c-contact-lead + .c-contact-lead {
    margin-top: 20px;
  }
}

.c-contact-name {
  padding: 0 10px;
  color: #fff;
}
.c-contact-name:after {
  content: ' :';
}
@media only screen and (max-width: 767px) {
  .c-contact-name {
    padding: 0 5px;
  }
}

.c-contact-tell {
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .c-contact-tell {
    padding: 0 5px;
  }
}

.c-contact-number {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
}
.c-contact-number:before {
  font-family: FontAwesome;
  content: '\f098';
  color: #eee;
  padding-right: 6px;
  font-size: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .c-contact-number {
    font-size: 1.6rem;
  }
  .c-contact-number:before {
    font-size: 2rem;
  }
}

.c-contact-mail {
  color: #fff;
  padding: 0 10px;
}
.c-contact-mail:before {
  font-family: FontAwesome;
  content: '\f0e0';
  padding-right: 3px;
}
@media only screen and (max-width: 767px) {
  .c-contact-mail {
    padding: 0 5px;
  }
}

.c-contact-other {
  color: #fff;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .c-contact-other {
    padding: 0 5px;
  }
}

.c-contact-mail-link {
  display: inline-block;
  color: #fff;
}

.c-contact-br {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-contact-br {
    display: block;
  }
}

.c-contact-text-subheading {
  border-bottom: solid 1px #bcbcbc;
  color: #eee;
  font-size: 1.8rem;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
}
.c-contact-text-subheading + .c-contact-text-subheading {
  margin-top: 3rem;
}

.c-contact-text-lead {
  color: #f8f8f8;
  font-size: 1.6rem;
  text-align: left;
  line-height: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .c-contact-text-lead {
    text-align: left;
  }
}

.c-contact-text-notes {
  color: #ccc;
  font-size: 1.2rem;
  text-align: justify;
}
.c-contact-text-notes + .c-contact-text-subheading {
  margin-top: 3rem;
}
.c-contact-text-notes + .c-contact-form-index {
  margin-top: 3rem;
}

/* ===== Page ===== */
/*==============================
-Page
===============================*/
/*==============================
-P-404
===============================*/
.p-404-mainvisual-wrap {
  padding-top: 15rem;
  margin: 0;
}

@media only screen and (max-width: 1000px) {
  .p-404-mainvisual-imagebox {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-imagebox {
    width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .p-404-mainvisual-imagebox.l-offset-left-1 {
    margin: 0;
  }
}

.p-404-mainvisual-image {
  padding-top: 115%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1450px) {
  .p-404-mainvisual-image {
    padding-top: 120%;
  }
}
@media only screen and (max-width: 1380px) {
  .p-404-mainvisual-image {
    padding-top: 126%;
  }
}
@media only screen and (max-width: 1300px) {
  .p-404-mainvisual-image {
    padding-top: 140%;
  }
}
@media only screen and (max-width: 1000px) {
  .p-404-mainvisual-image {
    padding-top: 150%;
  }
}
@media only screen and (max-width: 930px) {
  .p-404-mainvisual-image {
    padding-top: 165%;
  }
}
@media only screen and (max-width: 830px) {
  .p-404-mainvisual-image {
    padding-top: 175%;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-image {
    padding-top: 100%;
  }
}

@media only screen and (max-width: 1000px) {
  .p-404-mainvisual-about {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-about {
    width: 100%;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1000px) {
  .p-404-mainvisual-about.l-offset-right-2 {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-about.l-offset-right-2 {
    margin: -22rem 0 0;
  }
}

.p-404-mainvisual-aboutbox {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  padding: 5rem 4.5rem;
  border-radius: 10px;
  -webkit-box-shadow: 8px 6px 20px #000;
          box-shadow: 8px 6px 20px #000;
}
@media only screen and (max-width: 1300px) {
  .p-404-mainvisual-aboutbox {
    padding: 2rem 3rem;
  }
}
@media only screen and (max-width: 1280px) {
  .p-404-mainvisual-aboutbox {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-aboutbox {
    position: inherit;
    width: 100%;
    height: auto;
    padding: 0rem 1rem 2rem;
    margin: 5rem 0;
  }
}
.p-404-mainvisual-aboutbox::after {
  content: "";
  position: absolute;
  bottom: 23%;
  left: -40px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 27px 0px 26px 47px;
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-aboutbox::after {
    top: -35px;
    bottom: auto;
    right: 20px;
    left: auto;
    border-color: transparent transparent transparent #fff;
    border-width: 36px 20px 0px 20px;
  }
}

.p-404-mainvisual-about-header {
  color: #292929;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1720px) {
  .p-404-mainvisual-about-header {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 1580px) {
  .p-404-mainvisual-about-header {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1390px) {
  .p-404-mainvisual-about-header {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 1020px) {
  .p-404-mainvisual-about-header {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-left: 0.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-about-header {
    text-align: center;
    line-height: 1.8;
    padding: 0 1rem;
    margin-bottom: 0;
  }
}

.p-404-mainvisual-about-header-giraffe {
  color: #000;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 9rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1390px) {
  .p-404-mainvisual-about-header-giraffe {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 1280px) {
  .p-404-mainvisual-about-header-giraffe {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 1155px) {
  .p-404-mainvisual-about-header-giraffe {
    font-size: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-about-header-giraffe {
    font-size: 5rem;
  }
}

.p-404-mainvisual-about-lead {
  color: #292929;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.3rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: justify;
  padding: 1rem 1.4rem;
}
@media only screen and (max-width: 1710px) {
  .p-404-mainvisual-about-lead br {
    display: none;
  }
}
@media only screen and (max-width: 1520px) {
  .p-404-mainvisual-about-lead {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 1280px) {
  .p-404-mainvisual-about-lead {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 1100px) {
  .p-404-mainvisual-about-lead {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-404-mainvisual-about-lead {
    font-size: 1.2rem;
    padding: 1rem;
  }
}

/*==============================
-Page
===============================*/
.p-privacy-wrapper {
  display: block;
  position: relative;
  width: 100%;
  padding: 180px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-privacy-wrapper {
    padding: 120px 0;
  }
}

.p-privacy-header {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.p-privacy-header span {
  font-size: 1.4rem;
  text-align: center;
}

.p-privacy-text {
  text-align: center;
  margin-bottom: 40px;
}

.p-privacy-lead {
  margin-bottom: 40px;
}

.p-privacy-descarea {
  display: block;
  width: 100%;
}

.p-privacy-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.p-privacy-desc {
  position: relative;
  display: inline-block;
  color: #000000;
  margin: 0 auto 40px auto;
  z-index: 1;
}

/*==============================
-p-top
===============================*/
.p-top-mainvisual-logo {
  position: absolute;
  top: 42%;
  left: 400px;
  left: 480px;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 32vw;
  z-index: 9997;
}
@media only screen and (max-width: 1280px){
  .p-top-mainvisual-logo{
    top: 40%;
    left: 51%;
    -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 38vw;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-mainvisual-logo {
    top: 50%;
    width: 50%;
  }
}

.p-top-mainvisual-wrap {
  position: relative;
  background-color: #212121;
}

.p-top-mainvisual-top {
  width: 100%;
  padding-top: 50vh;
  background-color: #212121;
}

.p-top-mainvisual-under {
  width: 100%;
  padding-top: 50vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top-mainvisual-under::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 2;
}
.p-top-mainvisual-wrap .top-text{
  position: absolute;
  width: 70%;
  bottom: 5%;
  z-index: 13;
  left: 250px;
}

.p-top-mainvisual-h1{
  /* position: absolute;  */
  top: 67%; 
  left: 14%; 
  left: 250px;
  z-index: 1000;
  font-size: 4.2rem;
  line-height: 1.3em;
  margin-bottom: 0.4em;
}
.p-top-mainvisual-span{
  /* position: absolute; */
  top: 85%;
  left: 14%;
  left: 250px;
  z-index: 999;
  font-size: 3rem;
  font-weight: 600;
}
.p-top-mainvisual-h1 span{
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (max-width: 1280px){
  .p-top-mainvisual-wrap .top-text{
    width: 82%;
    bottom: 3%;
  }
  .p-top-mainvisual-h1{
    left: 33px;
    top: 62%;
    font-size: 3.7rem;
  }
  .p-top-mainvisual-span{
    left: 33px;
  }
}
@media only screen and (max-width: 900px){
  .p-top-mainvisual-wrap .top-text{
    width: 87%;
    left: 3%;
    bottom: 7%;
  }
  .p-top-mainvisual-h1{
    font-size: 3rem;
    top: 71%;
  }
  .p-top-mainvisual-span{
    font-size: 1.7rem;
    top: 90%;
  }
  .p-top-mainvisual-h1 span{
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 767px){
  .p-top-mainvisual-wrap .top-text{
    left: 5%;
  }
  .p-top-mainvisual-h1{
    font-size: 2.4rem;
    left: 15px;
    top: 60%;
    line-height: 1.4em;
  }
  .p-top-mainvisual-span{
    font-size: 1.2rem;
    line-height: 1;
    left: 15px;
    top: 89%;
  }
  .p-top-mainvisual-h1 span{
    font-size: 1.2rem;
    line-height: 1;
  }
}
.p-top-mainvisual-under {
    position: relative;
}

.p-top-mainvisual-under img, .p-top-mainvisual-under picture {
	height: 50vh;
    width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
    position: absolute;
	top: 0;
	left: 0;
}


.p-top-mainvisual-visualsticker {
  position: fixed;
  bottom: 5%;
  left: 50px;
  width: 128px;
  z-index: 9999;
}
@media only screen and (max-width: 1280px) {
  .p-top-mainvisual-visualsticker {
    position: absolute;
    width: 7vw;
    left: 2.4%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-mainvisual-visualsticker {
    position: absolute;
    left: 5%;
    width: 70px;
  }
}

.p-top-about-wrap {
  border-bottom: 1px solid #fff;
}

.p-top-about-contants {
  color: #2b2b2b;
  padding: 80px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-contants {
    padding: 30px;
  }
}

.p-top-about-header {
  font-size: 2.5vw;
  font-family: "Oswald", -apple-system, sans-serif;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-header {
    font-size: 2.8rem;
  }
}

.p-top-about-lead {
  font-size: 0.9vw;
  letter-spacing: 3px;
  line-height: 1.7;
  text-align: justify;
}
@media only screen and (max-width: 1400px) {
  .p-top-about-lead {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-about-lead {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
}

.p-top-howtoplay-contents {
  background-color: #212121;
  padding: 80px;
}
@media only screen and (max-width: 900px) {
  .p-top-howtoplay-contents {
    padding: 60px 30px;
  }
}

.p-top-howtoplay-header {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.5vw;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 900px) {
  .p-top-howtoplay-header {
    font-size: 2.8rem;
  }
}

.p-top-howtoplay-lead {
  color: #fff;
  font-size: 0.9vw;
  margin-bottom: 50px;
  letter-spacing: 3px;
  line-height: 1.7;
}
@media only screen and (max-width: 1400px) {
  .p-top-howtoplay-lead {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-howtoplay-lead {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

.p-top-howtoplay-btn {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  padding: 20px 25px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 900px) {
  .p-top-howtoplay-btn {
    padding: 10px 15px;
  }
}

.p-top-howtoplay-btn-comingsoon {
  font-size: 3rem;
}
@media only screen and (max-width: 900px) {
  .p-top-howtoplay-btn-comingsoon {
    font-size: 2rem;
  }
}

.p-top-news-wrap {
  background-color: #212121;
}
@media only screen and (max-width: 900px) {
  .p-top-news-wrap {
    padding: 50px 0;
  }
}

.p-top-news-contents {
  padding: 4vw;
}
@media only screen and (max-width: 1580px) {
  .p-top-news-contents {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 6)));
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-contents {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-news-contents {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.p-top-news-header {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.5vw;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 900px) {
  .p-top-news-header {
    font-size: 2.8rem;
  }
}

.p-top-news-link {
  display: inline-block;
  width: 100%;
  color: #fff;
  margin-bottom: 17px;
  padding-bottom: 13px;
  border-bottom: 1px solid #fff;
  /* margin-top: 10px; */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-news-link:hover {
  color: #e00000;
}

.p-top-news-date {
  display: inline-block;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.6rem;
  vertical-align: top;
  width: 135px;
}
@media only screen and (max-width: 1350px) {
  .p-top-news-date {
    font-size: 1.4rem;
    width: 120px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-date {
    font-size: 1.2rem;
    width: 95px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-date {
    width: 105px;
  }
}

.p-top-news-guest, .p-top-news-event, .p-top-news-service {
  display: inline-block;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.3rem;
  line-height: 11px;
  vertical-align: top;
  text-align: center;
  width: 70px;
  padding: 7px 5px;
  margin-top: -5px;
  margin-right: 20px;
}
@media only screen and (max-width: 1000px) {
  .p-top-news-guest, .p-top-news-event, .p-top-news-service {
    margin-right: 10px;
    margin-bottom: 12px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-guest, .p-top-news-event, .p-top-news-service {
    font-size: 1.1rem;
    padding: 4px 3px;
  }
}

.p-top-news-guest {
  background-color: rgba(188, 28, 84, 0.16);
  border: 1px solid #da1a5d;
  line-height: 13px;
}

.p-top-news-event {
  background-color: rgba(203, 75, 0, 0.16);
  border: 1px solid #CB4B00;
}

.p-top-news-service {
  background-color: rgba(81, 105, 161, 0.16);
  border: 1px solid #5c78bb;
}

.p-top-news-title {
  display: inline-block;
  font-size: 1.6rem;
  vertical-align: top;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 47%;
  padding-left: 2vw;
}
@media only screen and (max-width: 1350px) {
  .p-top-news-title {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-news-title {
    width: 43%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-title {
    font-size: 1.2rem;
    margin: 0;
    padding-left: 1vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-news-title {
    width: 37%;
    /* height: 20px; */
    margin-bottom: 6px;
  }
}

.p-top-news-lead {
  display: inline-block;
  width: 42%;
  font-size: 1.6rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 900px) {
  .p-top-news-lead {
    display: none;
  }
}

.p-top-info-wrap{
  
  background-color: #212121;
  padding: 50px 0;
}
.p-top-info-container, .p-top-info-map-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}
.p-top-info-box{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.p-top-info-table{
  font-size: 1.6rem;
  width: 90%;
}
.p-top-info-table thead{

}
.p-top-table-thead-tr{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: left;
     -moz-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.p-top-info-table tbody{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin: 10px auto;
}
.p-top-info-table tbody tr{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.p-top-info-table tbody tr th{
  
}
.p-top-info-table .left_col{
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.p-top-info-table .right_col{

}
.p-top-info-table tbody tr .info_tab_cell{
  padding: 5px 5px 5px 0;
  line-height: 1.7em;
}
.p-top-info-map{
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.p-top-info-map iframe{
  width: 100%;
  height: 100%;
}
.p-top-table-col-1{
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}
.p-top-table-col-2{
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}
@media only screen and (max-width: 1100px){
  .p-top-info-table .left_col, .p-top-table-col-1{
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}
@media only screen and (max-width: 900px){
  .p-top-info-table{
    width: 100%;
    margin: 0 auto;
  }
  .p-top-info-table tbody{
    margin: 20px auto;
    width: 100%;
  }
  .p-top-info-table .left_col, .p-top-table-col-1{
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media only screen and (max-width: 767px){
  .p-top-info-table tbody{
    margin: 20px auto;
    width: 80%;
  }
}
@media only screen and (max-width: 700px){
  .p-top-info-table{
    width: 100%;
  }
  .p-top-info-table tbody{
    width: 100%;
  }
}
/*==============================
-p-empire
===============================*/
.p-top-empire {
  background-color: #212121;
  padding: 4vw 0 4vw;
}

section.p-top-empire a {
    display: inline-block;
    margin: auto;
    max-width: 90%;
}

/*==============================
-p-top-vip_btn
===============================*/
.p-top-vip_btn {
  background-color: #212121;
  padding: 2vw 0 6vw;
}
.p-top-vip_btn .btn-container{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: solid 1px #f04285;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 97%;
}
.p-top-vip_btn .btn-container span{
    margin: auto;
    color: #f04285;
    font-size: 3rem;
    font-size: 2.5em;
    padding: 1% 22%;
    text-align: center;
    font-family: "Oswald", -apple-system, sans-serif;
    font-weight: bold;
}
.p-top-vip_btn a,
.p-vip_btn a {
    display: inline-block;
    padding: 2.5% 30%;
    border: solid 1px #f04285;
    margin: auto;
    color: #f04285;
    font-size: 2rem;
}
.p-top-vip_btn a.sublink{
  display: inline-block;
    padding: 1.5% 3%;
    border: none;
    margin: auto;
    color: #f04285;
    /* font-size: 2rem; */
    font-size: 3.2em;
    font-size: 2.4em;
    text-align: center;
    font-family: "Oswald", -apple-system, sans-serif;
    font-weight: bold;
}
.p-top-vip_btn a.sublink i.fa.fa-phone{
  font-size: 0.9em;
}
.p-top-vip_btn a.sublink i.fa{
  margin-right: 10px;
}
.p-vip_btn a:hover,
.p-top-vip_btn a:hover {
    border: solid 1px #fff;
    color: #fff;
}
@media only screen and (max-width: 900px) {
  .p-top-vip_btn {
	  margin-top: -30px;
    padding: 0 0 50px;
  }
}

.p-vip_btn {
    background-color: #212121;
    padding: 0vw 0 5vw;
    width: 100%;
    margin: -9% auto 0%;
    text-align: center;
}

@media only screen and (max-width: 900px) {
  .p-vip_btn {
    padding: 50px 0;
  }
	.p-top-vip_btn a,
	.p-vip_btn a {
		padding: 5.5% 12%;
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 767px){
  .p-top-vip_btn .btn-container{
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-top-vip_btn .btn-container span{
    padding: 1% 0 6%;
  }
  .p-top-vip_btn .btn-container .sublink{
    padding: 4.5% 5%;
    text-align: center;
    border: 1px solid #b83366;
    margin-top: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
            -webkit-box-align: center;
               -moz-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
  }
  .p-top-vip_btn .btn-container .sublink i.fa{
    margin: 0 25px 0 24%;
  }
}


.p-top-floorgenre-contents {
  padding: 4vw;
}
@media only screen and (max-width: 1580px) {
  .p-top-floorgenre-contents {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 6)));
  }
}
@media only screen and (max-width: 900px) {
  .p-top-floorgenre-contents {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-floorgenre-contents {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 30px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-top-floorgenre-header {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.5vw;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1280px) {
  .p-top-floorgenre-header {
    font-size: 2.8rem;
  }
}

.p-top-floorgenre-wrap {
  display: inline-block;
  width: calc(100% - 90px);
  padding: 30px 50px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 1780px) {
  .p-top-floorgenre-wrap {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-floorgenre-wrap {
    padding: 30px;
  }
}

.p-top-floorgenre-box {
  color: #fff;
      padding-top: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #8c8c8c;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 900px) {
  .p-top-floorgenre-box {
    margin: 0 0px 15px;
  }
}

.p-top-floorgenre-wrap a:hover > div {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background: #343434;
}
.p-top-floorgenre-grid {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-top-floorgenre-grid {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 30px - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 30px - 0.1px);
    margin: 0 calc( 30px / 2);
    max-width: calc(( 100% / ( 12 / 4)) - 30px);
  }
}

.p-top-floorgenre-number {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3rem;
}
@media only screen and (max-width: 1280px) {
  .p-top-floorgenre-number {
    font-size: 2.4rem;
  }
}

.p-top-floorgenre-logo {
  width: 60px;
  height: 55px;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1280px) {
  .p-top-floorgenre-logo {
    width: 46px;
    height: 40px;
  }
}

.p-top-floorgenre-name {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .p-top-pickup-wrap .p-top-pickup-wrap-full {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}

.p-top-pickup-info-grid {
  width: 30%;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f4f4;
}
@media only screen and (max-width: 1600px) {
  .p-top-pickup-info-grid {
    width: 26%;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-grid {
    width: 100%;
  }
}

.p-top-pickup-info-wrap {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3vw 0;
}
@media only screen and (max-width: 1600px) {
  .p-top-pickup-info-wrap {
    padding: 2vw 0;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-wrap {
    padding: 60px 0;
  }
}

.p-top-pickup-info-box {
  color: #2b2b2b;
  width: 90%;
}

.p-top-pickup-info-inner {
  margin-bottom: 30px;
  padding: 0 15% 0 5%;
}
@media only screen and (max-width: 1700px) {
  .p-top-pickup-info-inner {
    padding: 0 5%;
  }
}
@media only screen and (max-width: 1500px) {
  .p-top-pickup-info-inner {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-inner {
    margin-bottom: 30px;
  }
}

.p-top-pickup-info-header {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  margin-bottom: 1.7vw;
  z-index: 1;
}
@media only screen and (max-width: 1700px) {
  .p-top-pickup-info-header {
    font-size: 1.8vw;
    margin-bottom: 1vw;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-header {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-header {
    font-size: 2.5rem;
  }
}
.p-top-pickup-info-header.p-top-pickup-info-guest {
  position: relative;
}
.p-top-pickup-info-header.p-top-pickup-info-guest::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -8px;
  width: 5.5vw;
  height: 1.4vw;
  background-color: #da1a5d;
  z-index: -1;
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-header.p-top-pickup-info-guest::before {
    height: 22px;
    width: 18%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-header.p-top-pickup-info-guest::before {
    top: -8px;
    width: 24%;
  }
}
.p-top-pickup-info-header.p-top-pickup-info-event {
  position: relative;
}
.p-top-pickup-info-header.p-top-pickup-info-event::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -8px;
  width: 5.5vw;
  height: 1.4vw;
  background-color: #ef5e09;
  z-index: -1;
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-header.p-top-pickup-info-event::before {
    height: 22px;
    width: 18%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-header.p-top-pickup-info-event::before {
    top: -8px;
    width: 24%;
  }
}
.p-top-pickup-info-header.p-top-pickup-info-service {
  position: relative;
}
.p-top-pickup-info-header.p-top-pickup-info-service::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -8px;
  width: 5.5vw;
  height: 1.4vw;
  background-color: #5c78bb;
  z-index: -1;
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-header.p-top-pickup-info-service::before {
    height: 22px;
    width: 18%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-header.p-top-pickup-info-service::before {
    top: -8px;
    width: 24%;
  }
}

.p-top-pickup-info-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 2.5px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1550px) {
  .p-top-pickup-info-lead {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-info-lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-lead {
    font-size: 1.3rem;
  }
}

.p-top-pickup-info-border {
  content: '';
  width: 80%;
  height: 1px;
  background-color: #9a9a9a;
}

.p-top-pickup-info-link {
  display: block;
  color: #000;
  font-size: 2rem;
  text-align: center;
  width: calc(100% - 40px);
  padding: 20px 0;
  margin-left: 20px;
  border: 1px solid #000;
}
@media only screen and (max-width: 1700px) {
  .p-top-pickup-info-link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1600px) {
  .p-top-pickup-info-link {
    font-size: 1.3rem;
    padding: 15px 0;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-pickup-info-link {
    font-size: 1.6rem;
  }
}

.p-top-pickup-post-box {
  width: 70%;
  vertical-align: top;
  background-color: #212121;
}
@media only screen and (max-width: 1600px) {
  .p-top-pickup-post-box {
    width: 74%;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-post-box {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .p-top-pickup-post-box .l-tile-grid-4 {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 4)));
  }
}
@media only screen and (max-width: 767px) {
  .p-top-pickup-post-box .l-tile-grid-4 {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 6)));
  }
}
.p-top-pickup-post-box .l-tile-grid-4:hover .p-top-pickup-post-genrecolor-guest, .p-top-pickup-post-box .l-tile-grid-4:hover .p-top-pickup-post-genrecolor-event, .p-top-pickup-post-box .l-tile-grid-4:hover .p-top-pickup-post-genrecolor-service {
  position: absolute;
  content: '';
  width: 10px;
  height: 100%;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

.p-top-pickup-post-genrecolor-guest, .p-top-pickup-post-genrecolor-event, .p-top-pickup-post-genrecolor-service {
  position: absolute;
  width: 0;
  height: 100%;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

.p-top-pickup-post-genrecolor-guest {
  background-color: #da1a5d;
}

.p-top-pickup-post-genrecolor-event {
  background-color: #ef5e09;
}

.p-top-pickup-post-genrecolor-service {
  background-color: #5c78bb;
}

.p-top-pickup-post-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100%;
  width: 100%;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

.p-top-mainmenu-inner {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 23vw;
}

@media only screen and (max-width: 900px) {
  .p-top-mainmenu-inner {
    height: 40vw;
    border-bottom: 4px solid #000;
  }
  .p-top-mainmenu-inner:nth-child(3) {
    background-position: right 17% center;
  }
}

.p-top-mainmenu-text-inner {
  width: 35%;
  height: 23vw;
  background-color: rgba(0, 0, 0, 0.7);
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 900px) {
  .p-top-mainmenu-text-inner {
    width: 100%;
    height: 40vw;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.p-top-mainmenu-text-box {
  width: 60%;
}
@media only screen and (max-width: 900px) {
  .p-top-mainmenu-text-box {
    width: 100%;
    padding-left: 20px;
  }
}

.p-top-mainmenu-text-header {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3.5rem;
  margin-bottom: 2vw;
}
@media only screen and (max-width: 900px) {
  .p-top-mainmenu-text-header {
    font-size: 3rem;
    margin-bottom: 0;
    position: absolute;
    top: auto;
    bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 5px 5px 6px #000;
  }
}

.p-top-mainmenu-text-lead {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 2.5px;
  margin-bottom: 2vw;
}
@media only screen and (max-width: 900px) {
  .p-top-mainmenu-text-lead {
    display: none;
  }
}

.p-top-mainmenu-link {
  display: inline-block;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.7rem;
  padding: 10px 20px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 900px) {
  .p-top-mainmenu-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 1.2rem;
    padding: 8px 6px;
  }
}
.p-top-mainmenu-link:hover {
  color: #000;
  background-color: #fff;
}

.p-top-mainmenu-link-comingsoon {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  .p-top-submenu-wrap [class*="l-tile-grid-"] {
    max-width: 50%;
  }
}

.p-top-submenu-text-inner {
  height: 80vh;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #000;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  background-color: #f4f4f4;
}
@media only screen and (max-width: 900px) {
  .p-top-submenu-text-inner {
    height: 50vh;
    border-bottom: 1px solid #000;
  }
}
.p-top-submenu-text-inner:hover {
  background-color: #212121;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.p-top-submenu-text-inner:hover .p-top-submenu-text-header, .p-top-submenu-text-inner:hover .p-top-submenu-text-lead {
  color: #fff;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.p-top-submenu-text-inner:hover .p-top-submenu-link {
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.p-top-submenu-text-inner:hover .p-top-submenu-link-comingsoon {
  color: #fff;
}

.p-top-submenu-text-box {
  width: 80%;
}

.p-top-submenu-text-header {
  color: #000;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3.2rem;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .p-top-submenu-text-header {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}

.p-top-submenu-text-lead {
  color: #000;
  font-size: 1.4rem;
  text-align: justify;
  word-break: break-all;
  line-height: 1.5;
  letter-spacing: 2.5px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .p-top-submenu-text-lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
}

.p-top-submenu-link {
  display: inline-block;
  color: #000;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.7rem;
  padding: 10px 20px;
  border: 1px solid #000;
}
@media only screen and (max-width: 900px) {
  .p-top-submenu-link {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}

.p-top-submenu-link-comingsoon {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
}



ul.recruit_bnr {
    width: 90%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    padding: 5% 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

ul.recruit_bnr li {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
}

@media only screen and (max-width: 900px) {

ul.recruit_bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

ul.recruit_bnr li {
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 5% 0;
}

}
/*==============================
-p-news
===============================*/
.p-news-guest-wrap, .p-news-event-wrap, .p-news-service-wrap {
  padding: 100px 0;
}
@media only screen and (max-width: 900px) {
  .p-news-guest-wrap, .p-news-event-wrap, .p-news-service-wrap {
    padding: 50px 0;
  }
}

.p-news-guest-wrap {
  padding-top: 0;
}

.p-news-event-wrap {
  background-color: #2E2E2E;
}

.p-news-post-box {
  vertical-align: top;
}
@media only screen and (max-width: 1100px) {
  .p-news-post-box .l-tile-grid-4 {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 4)));
  }
}
@media only screen and (max-width: 767px) {
  .p-news-post-box .l-tile-grid-4 {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
    max-width: calc(( 100% / ( 12 / 6)));
  }
}

.p-news-subheader-box {
  padding-left: 2rem;
}

.p-news-subheader {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.4rem;
  margin-top: 60px;
  margin-bottom: 10px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .p-news-subheader {
    font-size: 3rem;
    letter-spacing: 0.6rem;
    margin-bottom: 5px;
  }
}
.p-news-subheader span {
  content: '';
  position: absolute;
  top: -10px;
  left: -28px;
  width: 160px;
  height: 35px;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .p-news-subheader span {
    top: -7px;
    left: -20px;
    width: 100px;
    height: 25px;
  }
}
.p-news-subheader::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  margin-left: 4rem;
}
@media only screen and (max-width: 900px) {
  .p-news-subheader::after {
    margin-left: 1rem;
  }
}
.p-news-subheader.p-news-subheader-guest span {
  background-color: #da1a5d;
}
.p-news-subheader.p-news-subheader-event span {
  background-color: #ef5e09;
}
.p-news-subheader.p-news-subheader-service span {
  background-color: #5c78bb;
}

.p-news-subheader-lead {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  .p-news-subheader-lead {
    font-size: 1.2rem;
    padding-left: 7px;
  }
}

.p-news-post-grid {
  margin-bottom: 30px;
  padding: 2rem;
  background-color: #2d2d2d;
}
@media only screen and (max-width: 900px) {
  .p-news-post-grid {
    padding: 15px;
  }
}

.p-news-post-grid-spevent {
  background-color: #212121;
}

.p-news-post-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100%;
  width: 100%;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transition: .5s;
}

.p-news-post-text-box {
  padding: 20px 0;
  background-color: #2d2d2d;
}
.p-news-post-text-box.p-news-post-text-box-event {
  background-color: #212121;
}

.p-news-post-text-header {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1400px) {
  .p-news-post-text-header {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-news-post-text-header {
    font-size: 1.8rem;
  }
}

.s-news-post-text-subheader {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: left;
  margin-bottom: 17px;
}
@media only screen and (max-width: 1400px) {
  .s-news-post-text-subheader {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 900px) {
  .s-news-post-text-subheader {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
}

.p-news-post-text-date {
  color: #d91010;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 1400px) {
  .p-news-post-text-date {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-news-post-text-date {
    font-size: 1.3rem;
  }
}

.p-news-post-text-lead {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 3px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .p-news-post-text-lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

.p-news-post-text-link {
  display: inline-block;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.4rem;
  padding: 10px 20px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 900px) {
  .p-news-post-text-link {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
}
.p-news-post-text-link:hover {
  color: #000;
  background-color: #fff;
}

/*==============================
-p-system
===============================*/
.p-system-note-box {
  position: relative;
  border: 2px solid #fff;
  padding: 40px 0 30px;
}
@media only screen and (max-width: 900px) {
  .p-system-note-box {
    border: 1px solid #fff;
  }
}

.p-system-note-title {
  position: absolute;
  top: -19px;
  left: 70px;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 9px 19px;
  border: 1px solid #fff;
  background-color: #212121;
}
@media only screen and (max-width: 900px) {
  .p-system-note-title {
    top: -16px;
    left: 25px;
    font-size: 12px;
    padding: 9px 19px;
  }
}

.p-system-note-lead {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #a9a9a9;
}
@media only screen and (max-width: 900px) {
  .p-system-note-lead {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.6;
    padding: 0 10px 25px;
  }
}

.p-system-note-credit {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
}

.p-system-entrancefee-wrap {
  padding: 100px 0 100px;
}
.p-system-drink-menu-wrap{
  padding: 0 0 100px;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-wrap {
    padding: 100px 0 0;
  }
}

.p-system-entrancefee-weekday {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3rem;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-weekday {
    font-size: 1.8rem;
  }
}
.p-system-entrancefee-weekday::before {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
  margin-right: 3rem;
}
.p-system-entrancefee-weekday::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
  margin-left: 3rem;
}

.p-system-entrancefee-contents {
  margin-bottom: 60px;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-contents {
    margin-bottom: 0;
  }
}
.p-system-entrancefee-contents .l-grid-6 {
  -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 30px - 0.1px);
      flex-basis: calc(( 100% / ( 12 / 6)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 6)) - 30px);
}

.p-system-entrancefee-ladies {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  padding: 2rem 0;
  background-color: #BF3379;
}
@media only screen and (max-width: 767px) {
  .p-system-entrancefee-ladies {
    font-size: 1.6rem;
    padding: 1rem 0;
  }
}

.p-system-entrancefee-mens {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
  background-color: #3C4BAC;
}
@media only screen and (max-width: 767px) {
  .p-system-entrancefee-mens {
    font-size: 1.6rem;
    padding: 10px 0;
  }
}

.p-system-entrancefee-status{
    color: #fff;
    font-family: "Oswald", -apple-system, sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
    padding: 0;
    margin-bottom: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.fee-div{

}

.fee-div::after{
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
  display: block;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px){
  .fee-div{

  }
}

@media only screen and (max-width: 767px){
  .p-system-entrancefee-status{
    font-size: 1.5rem;
  }
}

.p-system-entrancefee-time {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 40px;
}
.p-system-entrancefee-time::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
  margin-left: 1rem;
}

.p-system-entrancefee-price-ladies, .p-system-entrancefee-price-mens {
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-price-ladies, .p-system-entrancefee-price-mens {
    font-size: 2.3rem;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .p-system-entrancefee-price-ladies, .p-system-entrancefee-price-mens {
    font-size: 1.6rem;
  }
}
.p-system-entrancefee-price-ladies span, .p-system-entrancefee-price-mens span {
  font-size: 2rem;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-price-ladies span, .p-system-entrancefee-price-mens span {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-system-entrancefee-price-ladies span, .p-system-entrancefee-price-mens span {
    display: block;
    font-size: 1.2rem;
  }
}

.p-system-fee-price-detail {
  display: block;
  font-size: 1.4rem;
  padding: 10px 0;
}

.p-system-entrancefee-service {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 100px;
  border: 1px solid #ff9900;
  padding: 20px 0;
  color: #ff9900;
}
@media only screen and (max-width: 900px) {
  .p-system-entrancefee-service {
    font-size: 1.3rem;
    margin-bottom: 50px;
  }
}

.p-system-attention-wrap {
  background-color: #2E2E2E;
  padding: 100px 0;
}
@media only screen and (max-width: 900px) {
  .p-system-attention-wrap {
    padding: 50px 0;
  }
}

.p-system-attention-header {
  position: relative;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 7rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 20px;
  line-height: 1.5;
  margin-bottom: 70px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .p-system-attention-header {
    font-size: 3rem;
    letter-spacing: 9px;
    margin-bottom: 40px;
  }
}
.p-system-attention-header::before {
  position: absolute;
  top: 43%;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B9B9B9;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .p-system-attention-header::before {
    top: 34%;
  }
}
.p-system-attention-header span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 5px;
}
@media only screen and (max-width: 900px) {
  .p-system-attention-header span {
    font-size: 1.7rem;
  }
}

.p-system-attention-box {
  color: #B9B9B9;
  padding-bottom: 5rem;
}

.p-system-attention-head {
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.p-system-attention-lead {
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .p-system-attention-lead {
    font-size: 1.2rem;
    letter-spacing: 1.3px;
    margin-bottom: 15px;
  }
}

.p-system-attention-list {
  font-size: 1.4rem;
  margin-bottom: 3px;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 767px) {
  .p-system-attention-list {
    font-size: 1.2rem;
    letter-spacing: 1.3px;
  }
}

.p-system-attention-list-title {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 767px) {
  .p-system-attention-list-title {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
  }
}

.p-system-attention-list-text {
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 767px) {
  .p-system-attention-list-text {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    margin-bottom: 15px;
  }
}

.p-system-attention-note {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 767px) {
  .p-system-attention-note {
    font-size: 1.2rem;
    letter-spacing: 1.3px;
  }
}

.p-system-attention-border {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #B9B9B9;
}

/*==============================
-p-vip
===============================*/
.p-vip-set-wrap {
  padding: 0 100px 150px;
}
@media only screen and (max-width: 1280px) {
  .p-vip-set-wrap {
    padding: 0 20px 150px;
  }
}
@media only screen and (max-width: 900px) {
  .p-vip-set-wrap {
    padding: 0 20px 50px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .p-vip-set-wrap .l-grid-6 {
    margin-bottom: 30px;
  }
}

.p-vip-set-wrap .l-row {
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-vip-set-images {
  padding: 20px;
  background-color: #2E2E2E;
}
.p-vip-drink_menu{

}

@media only screen and (max-width: 767px) {
  .p-vip-drink_menu {
    
  }
}

@media only screen and (max-width: 1100px) {
  .p-vip-set-images {
    padding: 15px;
  }
}

.p-vip-seat_layout-wrap{
  margin: 50px 0;
}
.p-vip-set-paragraph{
  margin: 0 auto 20px;
  text-align: center;
  width: 70%;
}

.p-vip-set-paragraph p{
  color: #F02323;
  font-size: 1.8em;
  line-height: 1.2em;
}

.p-vip-seat_layout-contents-wrap{
  display: block;
}
.p-vip-seat_layout_content_inner{
  background: #232422;
  padding: 25px;
  margin: 0 auto 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.p-vip-seat_layout_content_inner .l-row{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-vip-seat_layout-contents-wrap h3.p-vip-sea-seat-type{
  margin-bottom: 20px;
}

.p-vip-floor-img{
  width: 100%;
  height: 435px;
}

.p-vip-seat-layout-details{
  
}

.p-vip-seat-text-top{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 5px 22px;
  border-bottom: thin solid #7E7E7E;
  /* margin-top: 0px; */
}

.p-vip-seat-title-block{
  border: thin solid #F02323;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 10px 3px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-vip-seat-type-title{
  color: #F02323;
  font-size: 3.4rem;
}

.p-vip-seat-capacity-block{
  /*-webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
          margin-top: 10px;
}

.p-vip-seat-layout-text{
  font-size: 1.8em;
}

.p-vip-seat-layout-text span{
  font-size: 2.5em;
  font-weight: 600;
}

.p-vip-seat-capacity-block .p-vip-seat-layout-text{

}

.p-vip-seat-capacity-block .p-vip-seat-layout-text span{
  margin-left: 15px;
}

.p-vip-available-tables{
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: space-between; */
  margin: 10px auto 10px;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-vip-available-tables .p-vip-seat-layout-text{

}

.p-vip-available-tables .p-vip-seat-layout-text span{
  margin-left: 20px;
}

.p-vip-text-middle{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 5px;
  border-bottom: thin solid #7E7E7E;
}

.p-vip-seat-time, .p-vip-seat-cost{
  font-size: 3rem;
  letter-spacing: 6px;
}

.p-vip-seat-time{
  margin-bottom: 16px;
}

.p-vip-red-lang-text{
  color: #F02323;
  font-size: 2em;
}

.p-vip-text-middle .p-vip-red-lang-text{

}

.p-vip-text-middle .p-vip-red-lang-text span{

}

.p-vip-text-bottom{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 5px;
}

.p-vip-seat-cost{
  margin-bottom: 16px;
}

.p-vip-seat-cost span{
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.p-vip-red-lang-text span{

}

.p-vip-text-bottom .p-vip-red-lang-text{

}

.p-vip-text-bottom .p-vip-red-lang-text span{
  font-size: 1.5rem;
}

.p-vip-text-last{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 5px;
  border-top: thin solid #7E7E7E;
}
.p-vip-text-last .p-vip-seat-cost{
  margin-top: 7px;
}
.p-vip-text-last .p-vip-red-lang-text span{
  font-size: 1.5rem;
}

.special-campaign-block{
  background-color: #F02323;
  padding: 10px;
}
.special_text_block_container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 4px solid #000;
  padding: 5px;
}

.special-campaign-block .campaign-text-container{
  margin: 7px auto;
}
.special-campaign-block h3.special-campaign-text{
  color: #fff;
  font-size: 3.2em;
  text-align: center;
 }
 .special-campaign-block h2.special-campaign-title{
  color: #000;
  font-size: 4.4em;
  letter-spacing: 2px;
  text-align: center;
 }
 @media only screen and (max-width: 767px){
  .special-campaign-block h3.special-campaign-text{
    font-size: 1.5em;
   }
   .special-campaign-block h2.special-campaign-title{
    font-size: 2em;
    letter-spacing: 1px;
   }
 }
@media only screen and (max-width: 1100px){
  .p-vip-seat_layout_content_inner{

  }
  .p-vip-seat_layout-wrap{

  }
  .p-vip-set-paragraph{
    
  }
  .p-vip-set-paragraph p{
    
  }
  .p-vip-seat_layout-contents-wrap{

  }
  .p-vip-floor-layout-picture{

  }
  .p-vip-floor-img{
    
  }
  .p-vip-seat-text-top{

  }
  .p-vip-seat-type-title{

  }
  .p-vip-seat-layout-text{

  }
  .p-vip-seat-layout-text span{
  
  }
  .p-vip-text-middle{

  }
  .p-vip-seat-time{

  }  
  .p-vip-red-lang-text{
  
  }
}

@media only screen and (max-width: 900px){
  .p-vip-seat_layout_content_inner{
    padding: 20px;
  }
  .p-vip-seat_layout-wrap{

  }
  .p-vip-set-paragraph{
    margin: 20px auto;
  }
  .p-vip-set-paragraph p{
    font-size: 1.2rem;
    letter-spacing: 2.5px;
    line-height: 1.5rem;
  }
  .p-vip-seat_layout-contents-wrap{

  }
  .p-vip-floor-layout-picture{

  }
  .p-vip-floor-img{

  }
  .p-vip-seat-text-top{

  }
  .p-vip-seat-type-title{

  }
  .p-vip-seat-layout-text{

  }
  .p-vip-seat-layout-text span{
  
  }
  .p-vip-text-middle{

  }
  .p-vip-seat-time{

  }  
  .p-vip-red-lang-text{
  
  }
}

@media only screen and (max-width: 767px){
  .p-vip-seat_layout_content_inner{
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .p-vip-seat_layout_content_inner .l-row{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .p-vip-set-paragraph{
    
  }
  .p-vip-set-paragraph p{
    font-size: 1.2rem;
    letter-spacing: 2.5px;
    line-height: 1.5rem;
  }
  .p-vip-seat_layout-contents-wrap{

  }
  .p-vip-floor-layout-picture{

  }
  .p-vip-floor-img{
    height: 200px;
    width: 100%;
    margin: 0 auto 15px;
  }
  .p-vip-seat-layout-details{
    
  }
  .p-vip-seat-text-top{
    margin-top: 0;
  }
  .p-vip-seat-title-block{
    text-align: center;
  }
  .p-vip-seat-type-title{
    font-size: 2.3rem;
  }
  .p-vip-seat-layout-text{
    font-size: 1.2rem;
  }
  .p-vip-seat-layout-text span{
    font-size: 1.8em;
  }
  .p-vip-available-tables{
    margin: 10px auto;
  }
  .p-vip-text-middle{
    padding: 10px 5px;
  }
  .p-vip-seat-time, .p-vip-seat-cost{
    font-size: 2rem;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
  }
  .p-vip-seat-time{
    
  }  
  .p-vip-red-lang-text{
    font-size: 1.2rem;
  }
  .p-vip-text-middle .p-vip-red-lang-text{

  }
  .p-vip-text-bottom{
    padding: 10px 5px;
  }
  .p-vip-seat-cost{
    
  }
  .p-vip-seat-cost span{
    font-size: 1.4rem;
  }
  .p-vip-text-bottom .p-vip-red-lang-text{

  }
  .p-vip-text-bottom .p-vip-red-lang-text span, .p-vip-text-last .p-vip-red-lang-text span{
    font-size: 0.9rem;
  }
}

.p-vip-bottle-wrap {
  padding: 0 0 100px;
}
@media only screen and (max-width: 900px) {
  .p-vip-bottle-wrap {
    padding: 0 0 50px;
  }
}

.p-vip-set-menu-head {
  display: table;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 5rem;
  z-index: 1;
  position: relative;
  text-align: center;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 900px) {
  .p-vip-set-menu-head {
    font-size: 3rem;
    margin: 0 auto 20px;
  }
}
.p-vip-set-menu-head::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -28px;
  width: 160px;
  height: 35px;
  z-index: -1;
  background-color: #8e8e8e;
}
@media only screen and (max-width: 900px) {
  .p-vip-set-menu-head::before {
    top: -7px;
    left: -20px;
    width: 80%;
    height: 23px;
  }
}

.p-vip-bottle-contents-wrap {
  margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  .p-vip-bottle-contents-wrap {
    margin-bottom: 30px;
  }
}

.p-vip-bottle-genre, .p-vip-seat-type {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 14px;
  margin-bottom: 30px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .p-vip-bottle-genre, .p-vip-seat-type {
    font-size: 2rem;
    letter-spacing: 4px;
  }
}
.p-vip-bottle-genre::after, .p-vip-seat-type::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #fff;
  margin-left: 20px;
}

.p-vip-bottle-grid {
  border-radius: 7px;
  margin-bottom: 2rem;
  background-color: #2d2d2d;
}
@media only screen and (max-width: 1100px) {
  .p-vip-bottle-grid {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 30px - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 30px - 0.1px);
    margin-bottom: 2rem;
    max-width: calc(( 100% / ( 12 / 4)) - 30px);
    margin-left: calc( 30px / 2);
    margin-right: calc( 30px / 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-vip-bottle-grid {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 6)) - 30px - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 6)) - 30px - 0.1px);
    margin-bottom: 2rem;
    max-width: calc(( 100% / ( 12 / 6)) - 30px);
    margin-left: calc( 30px / 2);
    margin-right: calc( 30px / 2);
  }
}

.p-vip-bottle-contents {
  margin-bottom: 30px;
  padding: 20px;
}
@media only screen and (max-width: 900px) {
  .p-vip-bottle-contents {
    padding: 20px 10px 0;
  }
}

.p-vip-bottle-img {
  position: relative;
  width: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 100%;
  margin-bottom: 20px;
}

.p-vip-bottle-name {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 5px;
  /*border-top: 1px solid #c00;*/
}
.p-vip-bottle-sub-name{
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #F02323;
}
.before-sub-name{
  padding-top: 10px;
}
.after-sub-name{
  padding-bottom: 10px;
  margin-top: -5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .p-vip-bottle-name {
    font-size: 1.3rem;
    letter-spacing: 2.5px;
  }
  .p-vip-bottle-sub-name{
    font-size: 1.2rem;
    letter-spacing: 2.5px;
  }
}

.p-vip-bottle-price {
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-vip-bottle-price {
    font-size: 1.6rem;
  }
}

/*==============================
-p-contact
===============================*/
/* ===============================
_p-exchange
================================= */
.p-exchange-bg {
  background-position: center center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -10000;
}

.p-exchange-dot-bg {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../images/filter_dot.gif);
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: -9998;
  width: 100%;
  height: 100vh;
}

.p-exchange-header-wrap {
  background-color: rgba(0, 0, 0, 0.25);
}

.p-exchange-wrap {
  position: relative;
  border-top: 5px solid #000;
}

.p-exchange-about {
  margin-top: -100px;
}
@media only screen and (max-width: 900px) {
  .p-exchange-about {
    margin: 0;
  }
}

.p-exchange-about-wrap {
  position: relative;
  padding: 12% 0;
  background-color: #212121;
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-wrap {
    margin-top: 0;
  }
}

.p-exchange-about-bg01 {
  position: absolute;
  top: 10%;
  left: 12%;
  max-width: 600px;
  opacity: 0;
  -webkit-animation: exchange-about-fade 0.9s linear both 1.2s;
  animation: exchange-about-fade 0.9s linear both 1.2s;
}
@media only screen and (max-width: 1000px) {
  .p-exchange-about-bg01 {
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-bg01 {
    display: none;
  }
}

.p-exchange-about-bg02 {
  position: absolute;
  bottom: 10%;
  right: 12%;
  max-width: 600px;
  opacity: 0;
  -webkit-animation: exchange-about-fade 0.9s linear both 1.2s;
  animation: exchange-about-fade 0.9s linear both 1.2s;
}
@media only screen and (max-width: 1000px) {
  .p-exchange-about-bg02 {
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-bg02 {
    display: none;
  }
}

@-webkit-keyframes exchange-about-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes exchange-about-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
.p-exchange-about-box {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 7rem 5rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-box {
    margin: 0 1.5rem;
    padding: 3rem 2rem;
  }
}

.p-exchange-about-box-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-exchange-about-box-line1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}

.p-exchange-about-box-line2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transition: all .9s inear;
  -o-transition: all .9s inear;
  transition: all .9s inear;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}

.p-exchange-about-box-line3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}

.p-exchange-about-box-line4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}

@-webkit-keyframes scalex-control {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes scalex-control {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes scaley-control {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scaley-control {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.p-exchange-about-lead {
  color: #fff;
  font-size: 1.6rem;
  text-align: justify;
  letter-spacing: 0.3rem;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-lead {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
  }
}

.p-exchange-single-about-lead-ber {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #eee;
  text-align: center;
  margin: 3rem auto;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-about-lead-ber {
    height: 1px;
    margin: 1.4rem auto;
  }
}

.p-exchange-about-lead-jp {
  color: #fff;
  font-size: 1.4rem;
  text-align: justify;
  letter-spacing: 2px;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .p-exchange-about-lead-jp {
    font-size: 1.2rem;
    letter-spacing: 3px;
    line-height: 1.7;
    word-break: break-all;
  }
}

.p-exchange-guest-slider {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guest-slider {
    padding: 5rem 0;
  }
}

.p-exchange-guest-slider-header {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guest-slider-header {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
}

.p-exchange-guest-slider-box {
  padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guest-slider-box {
    padding: 1rem;
  }
}

.p-exchange-guest-slider-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}

.p-exchange-gmap-header {
  color: #fff;
  font-size: 5rem;
  position: absolute;
  top: 8rem;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 100;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-exchange-gmap-header {
    font-size: 2.3rem;
    top: 3rem;
  }
}

.p-exchange-gmap {
  height: 90vh;
}
@media only screen and (max-width: 767px) {
  .p-exchange-gmap {
    height: 55vh;
  }
}

.p-exchange-gmap-info-window {
  position: relative;
  width: 250px;
  padding: 25px 30px;
  background-color: rgba(0, 0, 0, 0.67);
  border: 2px solid #f2e013;
  z-index: 999999999;
}
.p-exchange-gmap-info-window::before {
  display: inline-block;
  position: absolute;
  left: 48%;
  bottom: -14px;
  width: 24px;
  height: 14px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: url(../image/exchange/infobox-point.png) no-repeat 0 0;
  content: '';
}

.p-exchange-gmap-info-window-inner {
  text-align: center;
}

.p-exchange-gmap-info-window-title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.p-exchange-gmap-info-window-address {
  color: #fff;
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background-color: rgba(210, 0, 0, 0.4);
  padding: 5px;
  border-radius: 10px;
  border: 2px solid #a70000;
  cursor: pointer;
}
.p-exchange-gmap-info-window-address:hover {
  color: #fff;
  background-color: #a70000;
  border: 2px solid #a70000;
}

.p-exchange-infobox-marker {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #F6411B;
  text-align: center;
  -webkit-animation: sonar 2s infinite;
          animation: sonar 2s infinite;
  -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
          box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  cursor: pointer;
}
.p-exchange-infobox-marker span {
  color: #000;
  font-weight: bold;
  line-height: 1;
  vertical-align: bottom;
}

@-webkit-keyframes sonar {
  0% {
    -webkit-box-shadow: 0 0 0 0 #F6411B;
            box-shadow: 0 0 0 0 #F6411B;
  }
}

@keyframes sonar {
  0% {
    -webkit-box-shadow: 0 0 0 0 #F6411B;
            box-shadow: 0 0 0 0 #F6411B;
  }
}
.gm-style img {
  width: 25px;
}

.p-exchange-clublist {
  position: absolute;
  bottom: 0;
  padding: 5rem;
  background-size: cover;
  color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-exchange-clublist {
    position: static;
    width: 100%;
    background-image: url(../image/kirin02.jpg);
    background-size: 356%;
    padding: 1rem 1rem 3rem;
  }
}

.p-exchange-clublist-header {
  font-size: 4rem;
  padding: 1rem 2rem 5rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-exchange-clublist-header {
    font-size: 2.8rem;
    padding: 1rem 2rem 2rem;
  }
}

.p-exchange-gmap-text-club {
  font-size: 2rem;
  padding: 1rem 2rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-exchange-gmap-text-club {
    font-size: 1.8rem;
    padding: 1rem 0rem 0.5rem 2rem;
  }
}
.p-exchange-gmap-text-club:hover {
  color: #e3435a;
}

span.p-exchange-gmap-text-club-count {
  color: #000;
  font-size: 13px;
  text-align: center;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
  padding-top: 3px;
  margin-right: 5px;
  margin-top: -5px;
  background-color: #F6411B;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  span.p-exchange-gmap-text-club-count {
    width: 19px;
  }
}

span.p-exchange-gmap-text-club-from {
  color: #d0d0d0;
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  span.p-exchange-gmap-text-club-from {
    font-size: 11px;
  }
}

.p-exchange-gmap-text-club-country {
  color: #d0d0d0;
  font-size: 18px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .p-exchange-gmap-text-club-country {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .gm-style .gm-style-cc span, .gm-style .gm-style-cc a, .gm-style .gm-style-mtc div {
    display: none !important;
  }
}

.p-exchange-headerbox {
  padding: 20rem 0;
}
@media only screen and (max-width: 767px) {
  .p-exchange-headerbox {
    padding: 8rem 0;
  }
}

.p-exchange-header {
  text-align: center;
  color: #ffffff;
  font-size: 8rem;
  text-shadow: 2px 2px 6px #000;
}
@media only screen and (max-width: 767px) {
  .p-exchange-header {
    font-size: 4rem;
  }
}

.p-exchange-subheader {
  color: #f8f8f8;
  display: block;
  text-align: center;
  font-size: 3rem;
  text-transform: capitalize;
  text-shadow: 2px 2px 3px #000;
}
@media only screen and (max-width: 767px) {
  .p-exchange-subheader {
    font-size: 2rem;
  }
}

.p-exchange-single-about {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-about {
    padding: 5rem 0;
  }
}

.p-exchange-single-about-logobox {
  text-align: center;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 767px) {
  .p-exchange-single-about-logo {
    width: 50%;
  }
}

.p-exchange-single-about-lead {
  color: #fff;
  font-size: 1.7rem;
  text-align: justify;
  line-height: 1.6;
  -webkit-animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
  animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
}
@media only screen and (max-width: 1200px) {
  .p-exchange-single-about-lead {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-about-lead {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 0 1.5rem;
  }
}

.p-exchange-single-about-lead-jp {
  color: #fff;
  font-size: 1.6rem;
  text-align: justify;
  letter-spacing: 2px;
  line-height: 1.6;
  -webkit-animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
  animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
}
@media only screen and (max-width: 1170px) {
  .p-exchange-single-about-lead-jp {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-about-lead-jp {
    font-size: 1.2rem;
    padding: 0 1.5rem;
  }
}

.p-exchange-single-about-lead-ber {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #eee;
  text-align: center;
  margin: 2rem auto;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-about-lead-ber {
    margin: 1.5rem auto;
  }
}

.p-exchange-single-image {
  padding: 10rem 0;
  background-color: rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-image {
    padding: 0;
  }
}

.p-exchange-single-imagebox {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-imagebox {
    width: 50%;
    padding: .5rem;
  }
}

.p-exchange-single-information {
  background-color: #000;
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-information {
    padding: 0 0 5rem 0;
  }
}

.p-exchange-single-information-logobox {
  text-align: right;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-information-logobox {
    text-align: center;
  }
}

.p-exchange-single-information-logo {
  width: 50%;
}

.p-exchange-single-information-details {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-information-details {
    border: none;
  }
}

.p-exchange-single-information-text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  .p-exchange-single-information-text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-information-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
  }
}

.p-exchange-single-information-textlink {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  .p-exchange-single-information-textlink {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-information-textlink {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.p-exchange-single-information-textlink:hover {
  color: #f2e013;
}

.p-exchange-single-mapbox {
  position: relative;
  width: 100%;
  padding-top: 25%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-exchange-single-mapbox {
    padding-top: 60%;
  }
}

.p-exchange-guide {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guide {
    padding: 5rem 0;
  }
}

.p-exchange-guide-header {
  color: #fff;
  display: block;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-indent: 3px;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.75;
  padding-top: 12rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guide-header {
    font-size: 2.4rem;
    padding-top: 0;
    margin-bottom: 0;
  }
}

.p-exchange-guide-box {
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.p-exchange-guide-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 56.25%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guide-img {
    margin-bottom: 30px;
  }
}

.p-exchange-guide-name {
  color: #fff;
  font-size: 2rem;
  border-bottom: 2px solid #fff;
  margin-bottom: 2rem;
}

.p-exchange-guide-lead {
  color: #fff;
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .p-exchange-guide-lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
}

.p-exchange-back-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-exchange-back-box {
    padding: 0 2rem;
  }
}

.p-exchange-back-btn {
  color: #fff;
  font-size: 2rem;
  padding: 2rem 4rem;
  text-align: center;
  border: 1px solid #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
@media only screen and (max-width: 767px) {
  .p-exchange-back-btn {
    font-size: 1.6rem;
  }
}
.p-exchange-back-btn:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.exchange-fadeup {
  -webkit-animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
  animation: exchange-about-lead-fadeup 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
}

@-webkit-keyframes exchange-about-lead-fadeup {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes exchange-about-lead-fadeup {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*==============================
-p-archive
===============================*/
.p-archive-guest-wrap {
  padding-bottom: 100px;
}

.p-archive-subheader {
  color: #fff;
  margin-top: 60px;
  margin-bottom: 10px;
  letter-spacing: 1.4rem;
  display: block;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-archive-subheader {
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 1rem;
    letter-spacing: 0.6rem;
    padding-left: 2px;
  }
}

.p-archive-subheader-lead {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 60px;
  text-align: center;
}

.p-archive-guest-name {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
  word-break: break-all;
  min-height: 40px;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .p-archive-guest-name {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 5px 0 10px;
  }
}

@media only screen and (max-width: 900px) {
  .p-archive-box {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 10px - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 10px - 0.1px);
    margin: 0 calc( 10px / 2);
    max-width: calc(( 100% / ( 12 / 4)) - 10px);
  }
}

/*==============================
-p-recruit
===============================*/
.p-recruit-images-wrap {
  padding: 0 0 100px;
}
@media only screen and (max-width: 900px) {
  .p-recruit-images-wrap {
    padding: 0 20px 50px;
  }
  .p-recruit-images-wrap .l-grid-4 {
    -ms-flex-preferred-size: calc(( 100% / ( 12 / 4)) - 15px - 0.1px);
        flex-basis: calc(( 100% / ( 12 / 4)) - 15px - 0.1px);
    margin: 0 calc( 15px / 2);
    max-width: calc(( 100% / ( 12 / 4)) - 15px);
  }
}

.p-recruit-images {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100%;
  width: 100%;
}

.p-recruit-requirements-wrapper {
  padding: 0 0 100px;
}

@media only screen and (max-width: 767px) {
  .p-recruit-info-wrapper + .p-recruit-info-wrapper {
    margin-top: 7rem;
  }
}

.p-recruit-employee-header {
  color: #fff;
  font-size: 2.2rem;
  padding: 2rem 0;
  text-align: center;
  background: #641818;
}
@media only screen and (max-width: 900px) {
  .p-recruit-employee-header {
    font-size: 1.8rem;
  }
}

.p-recruit-part-header {
  color: #fff;
  font-size: 2.2rem;
  padding: 2rem 0;
  text-align: center;
  background: #002664;
}
@media only screen and (max-width: 900px) {
  .p-recruit-part-header {
    font-size: 1.8rem;
  }
}

.p-recruit-info-header {
  color: #fff;
  font-size: 2.2rem;
  padding: 2rem 0;
  text-align: center;
  background: #111;
}
@media only screen and (max-width: 900px) {
  .p-recruit-info-header {
    font-size: 1.8rem;
  }
}

.p-recruit-info-list-wrapper {
  margin-top: 4rem;
  width: 100%;
}

.p-recruit-info-list-index {
  border-bottom: solid 1px #666;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 1rem 0;
}
@media only screen and (max-width: 900px) {
  .p-recruit-info-list-index {
    font-size: 1.6rem;
  }
}

.p-recruit-info-listin {
  padding: 1rem 0;
  letter-spacing: 2px;
  line-height: 1.6;
}
.p-recruit-info-listin + .p-recruit-info-list-index {
  margin-top: 3rem;
}

.p-recruit-info-lead {
  font-size: 1.6rem;
  color: #ffffff;
}

.p-recruit-info-notes {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.p-recruit-flowchart-wrapper {
  background: #f4f4f4;
  padding: 100px 0;
}

.p-recruit-flowchart-list {
  margin-top: 3rem;
}

.p-recruit-flowchart-listin {
  border: solid 1px #111;
  padding: 2.4rem 1.5rem;
  position: relative;
}
.p-recruit-flowchart-listin + .p-recruit-flowchart-listin {
  margin-top: 7rem;
}
.p-recruit-flowchart-listin + .p-recruit-flowchart-listin::before {
  border-right: solid 3px #111;
  border-bottom: solid 3px #111;
  content: '';
  display: block;
  margin: 0 auto;
  top: -4rem;
  left: 49.5%;
  position: absolute;
  height: 1rem;
  width: 1rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 900px) {
  .p-recruit-flowchart-listin + .p-recruit-flowchart-listin::before {
    left: 49%;
  }
}

.p-recruit-flowchart-lead {
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.p-recruit-flowchart-notes {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  margin-top: 1rem;
}
@media only screen and (max-width: 900px) {
  .p-recruit-flowchart-notes {
    text-align: justify;
    line-height: 1.5;
  }
}

.p-recruit-form-wrapper {
  background: rgba(0, 0, 0, 0.8);
  padding: 100px 0;
}

.p-recruit-info-subheader {
  color: #111;
  font-size: 1.2rem;
  font-weight: bold;
}

.recruit-input > input {
  font-size: 16px;
}

.recruit-input-header {
  padding: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}

.recruit-textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border: solid 2px #ccc;
  border-radius: 2px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 900px) {
  .recruit-textarea {
    font-size: 16px;
  }
}

.form-line {
  padding: 5px;
}

.recruit-form {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #e3e3e3;
  color: #000000;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"] {
  width: 100%;
  padding: 15px;
}

.recruit-input-radio {
  line-height: 60px;
  font-size: 2rem;
  display: inline-block;
}

.recruit-input-radio-inner {
  margin-left: 10px;
  margin-right: 10px;
}

.recruit-form-header {
  text-align: center;
  font-size: 9rem;
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .recruit-form-header {
    font-size: 4rem;
  }
}

.recruit-buttonwrapped {
  text-align: center;
  margin-top: 20px;
}

.recruit-button-submit {
  padding: 25px;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease;
  background: #000000;
  color: #ffffff;
}

.recruit-button-submit:hover {
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  background: #f2e013;
  color: #000000;
}

.p-recruit-form {
  max-width: 500px;
  margin: 100px auto 0;
  padding: 40px 0;
  text-align: center;
  background-color: #2d2d2d;
  border: 1px solid #000;
}
@media only screen and (max-width: 900px) {
  .p-recruit-form {
    padding: 20px 0;
  }
}
.p-recruit-form:hover {
  background-color: #fff;
  cursor: pointer;
}
.p-recruit-form:hover a {
  color: #000;
}

.p-recruit-form-btn {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: 4px;
}
@media only screen and (max-width: 900px) {
  .p-recruit-form-btn {
    font-size: 1.6rem;
  }
}

/*==============================
-p-howtoplay
===============================*/
.p-howtoplay-mainvisual-wrap {
  height: 50vh;
}

.p-howtoplay-about-wrap {
  padding-bottom: 200px;
}

.p-howtoplay-about-images-01 {
  position: absolute;
  top: -50px;
  left: 0;
  width: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 50%;
}

.p-howtoplay-about-images-02 {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 50%;
}

.p-howtoplay-about-text-flex {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-howtoplay-about-text-box {
  padding: 20px 20px 20px 100px;
}

.p-howtoplay-about-text-head {
  font-family: "Oswald", -apple-system, sans-serif;
  margin-bottom: 20px;
}

.p-howtoplay-about-text-lead {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.p-howtoplay-floormap-wrap {
  height: 100vh;
  padding: 80px 20px 0;
  overflow: hidden;
  background-color: #2E2E2E;
}
.p-howtoplay-floormap-wrap .l-full {
  height: 100%;
}

.p-howtoplay-floormap-head {
  font-family: "Oswald", -apple-system, sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.p-howtoplay-floormap-lead {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.6;
}

.p-howtoplay-floormap-grid {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-howtoplay-floormap-text {
  position: relative;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75%;
  height: 50%;
  margin-left: auto;
}

.p-howtoplay-floormap-text-box {
  padding: 80px;
}

.p-howtoplay-floormap-text-head {
  font-family: "Oswald", -apple-system, sans-serif;
  margin-bottom: 20px;
}

.p-howtoplay-floormap-text-lead {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.p-howtoplay-floormap-line-box-01 {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
}
.p-howtoplay-floormap-line-box-01 .p-howtoplay-floormap-box-line1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}
.p-howtoplay-floormap-line-box-01 .p-howtoplay-floormap-box-line2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transition: all .9s inear;
  -o-transition: all .9s inear;
  transition: all .9s inear;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}
.p-howtoplay-floormap-line-box-01 .p-howtoplay-floormap-box-line3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}
.p-howtoplay-floormap-line-box-01 .p-howtoplay-floormap-box-line4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}

.p-howtoplay-floormap-line-box-02 {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
}
.p-howtoplay-floormap-line-box-02 .p-howtoplay-floormap-box-line1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}
.p-howtoplay-floormap-line-box-02 .p-howtoplay-floormap-box-line2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transition: all .9s inear;
  -o-transition: all .9s inear;
  transition: all .9s inear;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}
.p-howtoplay-floormap-line-box-02 .p-howtoplay-floormap-box-line3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b9b9b9;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scalex-control 0.5s linear both 0.7s;
  animation: scalex-control 0.5s linear both 0.7s;
}
.p-howtoplay-floormap-line-box-02 .p-howtoplay-floormap-box-line4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: scaley-control 0.9s linear both 1.2s;
  animation: scaley-control 0.9s linear both 1.2s;
}

@keyframes scalex-control {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scaley-control {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.p-howtoplay-contents-wrap {
  padding: 200px 0;
}

.p-howtoplay-contents-images {
  position: relative;
  width: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 20%;
  margin-left: auto;
}

.p-howtoplay-contents-text-box {
  padding: 50px 0;
}

/*==============================
-p-mission
===============================*/

.c-page-mission-mv-wrap{
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 10% 40px;
  z-index: 0;
  height: 780px;
}
.c-page-mission-mv-wrap .top-background-sp{
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-page-mission-mv-wrap .top-text{
  width: 100%;
}
.c-page-mission-mv-wrap .top-text .c-page-mission-header{
  font-family: "Bebas Neue","Oswald", -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  /*font-size: 115px;*/
  font-size: 17em;
  /*line-height: 97px;*/
  line-height: 17rem;
}
.c-page-mission-mv-wrap .top-subtitle{
  width: 100%;
}
.c-page-mission-mv-wrap .top-subtitle span{
  /*font-size: 2.5em;*/
  font-size: 3.5em;
  font-weight: 700;
  font-family: 'acumin-pro';
}
.c-page-mission-mv-wrap .left-element{
  position: absolute;
  /*bottom: 12px;
  left: 12px;*/
  bottom: 9%;
  left: 4%;
}
.c-page-mission-mv-wrap .left-element::before{
  position: absolute;
  top: -58px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 69px;
  background: #fff;
  content: ' ';
}
.c-page-mission-mv-wrap .left-element::after{

}
.c-page-mission-mv-wrap .left-element .arrow-down{
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 15px;
}
.c-page-mission-mv-wrap .left-element .arrow-down::after{
  content: '';
  display: block;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 8px;
  /*border-right: 2px solid #fff;*/
  border-top: 2px solid #fff;
  behavior: url(-ms-transform.htc);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-page-mission-mv-wrap .left-element span.side-text{
  position: absolute;
  rotate: 90deg;
  width: 160px;
  left: -74px;
  top: -138px;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 11px;
}
.c-page-mission-mv-wrap .right-element{
  position: absolute;
  /*top: 156px;
  right: 16px;*/
  top: 25%;
  right: 6%;
}
.c-page-mission-mv-wrap .right-element span.side-text{
  position: absolute;
  rotate: 90deg;
  width: 152px;
  letter-spacing: 6px;
  font-weight: 800;
  font-size: 11px;
  top: 0px;
  left: -75px;
}
.c-page-mission-mv-wrap .right-element .down-line{
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 15px;
}
.c-page-mission-mv-wrap .right-element .down-line::before{
  position: absolute;
  top: 80px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 160px;
  background: #fff;
  content: ' ';
}
.c-page-mission-mv-wrap .head-mission-block-txt{
  /*width: 237px;
  background: #eb1c238c;*/
  margin: 15px 15px 15px 0;
}
.c-page-mission-mv-wrap .head-mission-block-txt h3.c-page-mission-head-block-txt{
  color: #fff;
  font-family: "Bebas Neue",'Oswald', sans-serif;
  font-size: 4em;
  font-weight: 500;
  /*letter-spacing: 10px;*/
  letter-spacing: 20px;
  padding: 5px 25px;
  background: #eb1c238c;
  display: inline-block;
}
.c-page-mission-mv-wrap .c-page-mission{

}
.c-page-mission-mv-wrap .c-page-mission-head-paragraph{
  font-family: "acumin-variable",sans-serif;
  font-variation-settings: 'wght' 500, 'wdth' 50, 'slnt' 0;
  font-weight: 300;
  text-align: justify;
  /*line-height: 15px;*/
  line-height: 22px;
  font-size: 1.5em;
}
@media screen and (min-width: 1600px){
  .c-page-mission-mv-wrap .top-text{
    width: 65%;
    margin-left: 17%;
  }
  .c-page-mission-mv-wrap .top-subtitle{
    width: 65%;
    margin-left: 17%;
  }
  .c-page-mission-mv-wrap .head-mission-block-txt{
    margin-left: 17%;
  }
  .c-page-mission-mv-wrap .c-page-mission{
    margin-left: 17%;
    width: 65%;
  }
}
section.p-mission-about{
  position: relative;
  background: #FFF;
}
section.p-mission-about .red-block{
  background: #EB1C24;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
             -moz-box-orient: horizontal;
             -moz-box-direction: normal;
              -ms-flex-flow: row;
                  flex-flow: row;
          padding: 15px 20px;
}
section.p-mission-about .red-block::after{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 25px solid #EB1C24;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  position: absolute;
  bottom: -25px;
  left: calc(50% - 50px / 2);
  z-index: 1;
}
section.p-mission-about .top-text{

}
section.p-mission-about .top-text span{
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 17px;
  line-height: 1.2em;
}
section.p-mission-about .p-mission-about-container{
  background: #fff;
  padding-top: 70px;
}
section.p-mission-about .p-mission-about-container .p-mission-about-big-text-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          padding: 0 10%;
}
h2.c-page-mission-title{
  font-size: 9em;
  color: #000;
  text-align: center;
  line-height: 10rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 800;
}
@media screen and (min-width: 1049px){
  h2.c-page-mission-title{
    font-size: 10em;
    
  }
}
@media screen and (min-width: 1158px){
  h2.c-page-mission-title{
    font-size: 11em;
    line-height: 11rem;
  }
}
@media screen and (min-width: 1266px){
  h2.c-page-mission-title{
    font-size: 12em;
    line-height: 12rem;
  }
}
h2.c-page-mission-title span{
  color: #EB1C24;
}
section.p-mission-about .p-mission-about-container .c-page-mission-lead-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          margin: 25px auto;
}
span.c-page-mission-lead{
  color: #000;
  font-size: 3.8em;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: 'College-sans', sans-serif;
}
section.p-mission-about .p-mission-about-container .c-page-mission-paragraph-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          padding: 0 10% 30px;
}
p.c-page-mission-paragraph{
  color: #000;
  font-size: 1.7em;
  line-height: 2em;
  font-weight: 600;
  text-align: justify;
}
section.p-mission-comm-service{
  background: #F6F8F8;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 70px 20px;
}
section.p-mission-comm-service .p-mission-subtitle{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.p-mission-comm-service .p-mission-subtitle span.c-page-mission-subtitle{
  color: #EB1C24;
  font-weight: 800;
  font-size: 1.1em;
  font-weight: 700;
  font-family: 'acumin-pro';
}
section.p-mission-comm-service .p-mission-title{
  margin-top: 4px;
  margin-bottom: 40px;
}
section.p-mission-comm-service .p-mission-title h2.c-page-mission-title{
  color: #000;
  font-size: 2.1em;
  line-height: 1em;
  font-weight: 500;
  font-family: 'acumin-pro';
}
section.p-mission-comm-service .p-mission-title h2.c-page-mission-title span{
  color: #EB1C24;
  font-weight: 800;
}
section.p-mission-comm-service .p-mission-comm-service-items-container{
  
}
section.p-mission-comm-service .service-items-container-l-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.p-mission-comm-service .service-items-container-l-row{
  /*-webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;*/
  width: 80%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
section.p-mission-comm-service .p-mission-comm-service-items-container .p-mission-comm-service-item{
  background: #fff;
  border-radius: 10px;
  margin: 0 20px 20px 0;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
}
section.p-mission-comm-service .p-mission-comm-service-items-container .p-mission-comm-service-item:nth-child(even){
  margin-right: 0;
}
section.p-mission-comm-service .p-mission-comm-service-items-container .p-mission-comm-service-item:last-child{
  /*margin-bottom: 0;*/
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-img-container{

}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-img-container 
figure.p-mission-comm-service-img{
  width: 100%;
  padding-bottom: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  border-radius: 10px 10px 0 0;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-all-text-container{
  padding: 10px 25px 20px;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container{
  position: relative;
  margin: 10px auto;
  z-index: 1;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container
span.p-mission-comm-service-item-subtitle{
  color: #000;
  padding-right: 5px;
  background-color: #FFF;
  font-family: 'acumin-pro';
  font-weight: 800;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container
span.p-mission-comm-service-item-subtitle::after{
  position: absolute;
  content: '';
  bottom: 0; 
  left: 0;
  right: 0;
  height: 0.5em;
  border-top: 1px solid #000;
  z-index: -1;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-title-container{
  width: 70%;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-title-container 
h3.p-mission-comm-service-item-title{
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 700;
  font-size: 2em;
  color: #EB1C24;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-text-container{
  margin-top: 10px;
}
section.p-mission-comm-service .p-mission-comm-service-items-container 
.p-mission-comm-service-item .p-mission-comm-service-item-text-container 
.p-mission-comm-service-item-text{
  color: #000;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: justify;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
}
section.p-mission-declaration{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 30px 0;
}
section.p-mission-declaration .p-mission-declaration-top{

}
section.p-mission-declaration .p-mission-declaration-top .declaration-sub-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid{

}
section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
.c-page-mission-declaration-title-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
.c-page-mission-declaration-title-container h2.c-page-mission-declaration-title{
  font-family: 'impact';
  font-weight: 300;
}
section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
.c-page-mission-declaration-subtitle-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
.c-page-mission-declaration-subtitle-container span.c-page-mission-declaration-subtitle{
  font-size: 2em;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
}
section.p-mission-declaration .p-mission-declaration-top .declaration-div-paragraph-div-container{
  width: 80%;
}
section.p-mission-declaration .p-mission-declaration-top 
.c-page-mission-declaration-paragraph-container{
  margin: 20px auto;
}
section.p-mission-declaration .p-mission-declaration-top 
.c-page-mission-declaration-paragraph-container p.c-page-mission-declaration-paragraph{
  font-size: 1.6em;
  line-height: 1.8em;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
}
section.p-mission-declaration-bottom{
  
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-bg-container{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 25px;
  
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element{
  padding: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-flow: wrap;
              flex-flow: wrap;
              position: relative;
              height: 140px;
              width: 78%;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element::after{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: -15px;
  left: 0;
  background-color: inherit;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element{
  width: 100%;
  width: 78%;
  height: 214px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element-sp{
  display: none;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element::after{
  content: none;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element .sdg-picture-container{
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
          height: 100%;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element .sdg-text-container{
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-flow: column;
                  flex-flow: column;
          -webkit-box-pack: center;
             -moz-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .picture-area{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title{
  position: relative;
  margin-bottom: 7px;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title::after{
  
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  margin-top: 10px;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title h4.c-page-mission-sdg-element-title{
  position: relative;
  display: inline-block;
  font-size: 2em;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title h4.c-page-mission-sdg-element-title::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  margin-top: 10px;
}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-text-content{

}
section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-text-content
p.c-page-mission-sdg-text{
  line-height: 1.7rem;
  font-size: 1.5rem;
}

section.p-mission-declaration-bottom .c-page-mission-sdg-element .sdg-goals-picture-area{

}
section.p-mission-declaration-bottom .c-page-mission-sdg-goals_text-container{

}
section.p-mission-declaration-bottom p.c-page-mission-sdg-goals-text{

}
section.p-mission-declaration-bottom .c-page-mission-sdg-element .c-page-mission-sdg-element-goals-container{
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 900px){
  .c-page-mission-mv-wrap{
    padding: 150px 35px 60px;
    height: initial;
  }
  .c-page-mission-mv-wrap .top-background-sp{
    display: block;
    position: absolute;
    z-index: -1;
  }
  .c-page-mission-mv-wrap .top-text{

  }
  .c-page-mission-mv-wrap .top-text .c-page-mission-header{
    font-size: 115px;
    line-height: 97px;
  }
  .c-page-mission-mv-wrap .top-subtitle{

  }
  .c-page-mission-mv-wrap .top-subtitle span{
    font-size: 1.75em;
  }
  .c-page-mission-mv-wrap .left-element{
    bottom: 12px;
    left: 12px;
  }
  .c-page-mission-mv-wrap .left-element::before{
    top: -58px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 69px;
  }
  .c-page-mission-mv-wrap .left-element .arrow-down{
    width: 10px;
    height: 15px;
  }
  .c-page-mission-mv-wrap .left-element .arrow-down::after{
    margin: 0;
    padding: 0;
    width: 18px;
    height: 8px;
    /*border-right: 2px solid #fff;*/
    border-top: 2px solid #fff;
  }
  .c-page-mission-mv-wrap .left-element span.side-text{
    width: 160px;
    left: -74px;
    top: -138px;
    letter-spacing: 5px;
    font-size: 11px;
  }
  .c-page-mission-mv-wrap .right-element{
    top: 156px;
    right: 16px;
  }
  .c-page-mission-mv-wrap .right-element span.side-text{
    width: 152px;
    letter-spacing: 6px;
    font-size: 11px;
    top: 0px;
    left: -75px;
  }
  .c-page-mission-mv-wrap .right-element .down-line{
    width: 10px;
    height: 15px;
  }
  .c-page-mission-mv-wrap .right-element .down-line::before{
    top: 80px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 160px;
  }
  .c-page-mission-mv-wrap .head-mission-block-txt{
    width: 147px;
    margin: 15px 15px 15px 0;
  }
  .c-page-mission-mv-wrap .head-mission-block-txt h3.c-page-mission-head-block-txt{
    font-size: 3em;
    letter-spacing: 2px;
    padding: 5px 12px;
  }
  .c-page-mission-mv-wrap .c-page-mission-head-paragraph{
    font-size: 1.2rem;
    line-height: 15px;
  }
  section.p-mission-about{

  }
  section.p-mission-about .red-block{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 20px 30px;
  }
  section.p-mission-about .red-block::after{
    border-top: 25px solid #EB1C24;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    bottom: -25px;
    left: calc(50% - 50px / 2);
  }
  section.p-mission-about .top-text{
  
  }
  
  section.p-mission-about .top-text span{
    font-size: 2.3em;
    letter-spacing: 17px;
    line-height: 35px;
  }
  section.p-mission-about .p-mission-about-container{
    padding-top: 70px;
  }
  section.p-mission-about .p-mission-about-container .p-mission-about-big-text-container{
    padding: 0;
    max-width: 85%;
    margin: 0 auto;
  }
  h2.c-page-mission-title{
    font-size: 8em;
    line-height: 10rem;
  }
  section.p-mission-about .p-mission-about-container .c-page-mission-lead-container{
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 25px auto;
  }
  span.c-page-mission-lead{
    font-size: 1.8em;
    letter-spacing: 3px;
  }
  section.p-mission-about .p-mission-about-container .c-page-mission-paragraph-container{
    -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
    padding: 0 20px 30px;
    max-width: 85%;
    margin: 0 auto;
  }
  p.c-page-mission-paragraph{
    font-size: 1.7em;
    line-height: 2em;
  }
  section.p-mission-comm-service{

  }
  section.p-mission-comm-service .p-mission-subtitle{
  
  }
  section.p-mission-comm-service .p-mission-subtitle span.c-page-mission-subtitle{
  
  }
  section.p-mission-comm-service .p-mission-title{
  
  }
  section.p-mission-comm-service .p-mission-title h2.c-page-mission-title{
  
  }
  section.p-mission-comm-service .p-mission-title h2.c-page-mission-title span{
  
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container{
  
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container .service-items-container-l-row{
    -webkit-box-pack: space-evenly;
       -moz-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
            width: 100%;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container .p-mission-comm-service-item{
    margin: 0 0 20px 0;
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container .p-mission-comm-service-item:last-child{
    margin-bottom: 0;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-img-container{
  
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-img-container 
  figure.p-mission-comm-service-img{
    padding-bottom: 200px;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-all-text-container{
    padding: 10px 20px 20px;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container{
  
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container::after{
  
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container
  span.p-mission-comm-service-item-subtitle{
    padding-right: 5px;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-subtitle-container
  span.p-mission-comm-service-item-subtitle::after{
    height: 0.5em;
    border-top: 1px solid #000;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-title-container{
    width: 70%;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-title-container 
  h3.p-mission-comm-service-item-title{
    font-size: 2em;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-text-container{
    margin-top: 10px;
  }
  section.p-mission-declaration .p-mission-declaration-top .declaration-div-paragraph-div-container{
    width: 100%;
  }
  section.p-mission-comm-service .p-mission-comm-service-items-container 
  .p-mission-comm-service-item .p-mission-comm-service-item-text-container 
  .p-mission-comm-service-item-text{
    font-size: 1.2em;
    line-height: 1.5em;
  }
  section.p-mission-declaration{
    padding: 40px 20px;
  }
  section.p-mission-declaration .p-mission-declaration-top{
  
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid{
  
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
  .c-page-mission-declaration-title-container{
    
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
  .c-page-mission-declaration-title-container h2.c-page-mission-declaration-title{
  
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
  .c-page-mission-declaration-subtitle-container{
    
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
  .c-page-mission-declaration-subtitle-container span.c-page-mission-declaration-subtitle{
    font-size: 2em;
  }
  section.p-mission-declaration .p-mission-declaration-top .p-mission-declaration-title-grid 
  .c-page-mission-declaration-title-container .c-page-mission-declaration-subtitle-container
  span.c-page-mission-declaration-subtitle{
    margin: 20px auto;
  }
  section.p-mission-declaration .p-mission-declaration-top 
  .c-page-mission-declaration-paragraph-container{
    width: 90%;
    width: 100%;
  }
  section.p-mission-declaration .p-mission-declaration-top 
  .c-page-mission-declaration-paragraph-container p.c-page-mission-declaration-paragraph{
    font-size: 1.6em;
    line-height: 1.8em;
  }
  section.p-mission-declaration-bottom{
  
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container{
    padding: 60px 25px;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
               -moz-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element{
    padding: 15px;
    height: initial;
    /*width: initial;*/
    width: 95%;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element{
    height: 120px;
    width: 100%;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element .sdg-picture-container{
    height: 82px;
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element .sdg-text-container{
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .picture-area{
  
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title{
    margin-bottom: 7px;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-title h4.c-page-mission-sdg-element-title{
    font-size: 1.4em;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-text-content{
    
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-text-content
  p.c-page-mission-sdg-text{
    line-height: 1.7rem;
    font-size: 1.2rem;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element .sdg-goals-picture-area{
  
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-goals_text-container{
  
  }
  section.p-mission-declaration-bottom p.c-page-mission-sdg-goals-text{
  
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element{
    display: none;
  }
  section.p-mission-declaration-bottom .c-page-mission-sdg-element-container .c-page-mission-sdg-element.goals-sdg-element-sp{
    display: block;
  }
}


/* ===== Single ===== */
/*==============================
-Single
===============================*/
/*==============================
-S-news
===============================*/
.s-news-wrap {
  background-color: #212121;
}

.s-news-mv-wrap {
  padding: 200px 0 100px;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-wrap {
    padding: 140px 0 30px;
  }
}

.s-news-mv-contents {
  position: relative;
  padding: 10vw 0 1vw;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-contents {
    padding: 30px 0 1vw;
  }
}

.s-news-mv-header {
  position: absolute;
  top: 0;
  font-family: "Oswald", -apple-system, sans-serif;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 7px;
  z-index: 2;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-header {
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 4px;
    width: 100%;
  }
}
.s-news-mv-header .s-news-mv-header-guest {
  color: #da1a5d;
}
.s-news-mv-header .s-news-mv-header-event {
  color: #FF9C1A;
}
.s-news-mv-header .s-news-mv-header-service {
  color: #5c78bb;
}

.s-news-mv-image {
  position: relative;
  padding-top: 50%;
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-image {
    width: 100%;
    padding-top: 100%;
  }
}

.s-news-mv-image-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  padding-top: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-image-main {
    padding-top: 95%;
    width: 95%;
  }
}

.s-news-mv-image-backleft {
  position: absolute;
  bottom: -60px;
  left: -100px;
  padding-top: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0.8;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-image-backleft {
    bottom: -20px;
    left: -4%;
    -ms-filter: blur(8px);
    -webkit-filter: blur(8px);
            filter: blur(8px);
    padding-top: 90%;
    width: 90%;
    opacity: 0.6;
  }
}

.s-news-mv-image-backright {
  position: absolute;
  top: -60px;
  right: -100px;
  padding-top: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0.8;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-image-backright {
    top: -20px;
    right: -4%;
    -ms-filter: blur(8px);
    -webkit-filter: blur(8px);
            filter: blur(8px);
    padding-top: 90%;
    width: 90%;
    opacity: 0.6;
  }
}

.s-news-mv-text-box {
  margin: 50px auto;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-text-box {
    width: 95%;
    margin: 20px auto 0;
  }
}

.s-news-mv-text-header {
  color: #fff;
  font-size: 3.4rem;
  letter-spacing: 10px;
  text-align: center;
  word-break: break-all;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-text-header {
    font-size: 2rem;
    text-align: left;
    letter-spacing: 4px;
    margin-bottom: 10px;
  }
}

h2.s-news-mv-text-subheader {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  h2.s-news-mv-text-subheader {
    font-size: 1.4rem;
    text-align: left;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}

p.s-news-mv-text-date {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  p.s-news-mv-text-date {
    font-size: 1.3rem;
    text-align: left;
  }
}
p.s-news-mv-text-date span.s-news-mv-text-date-head {
  font-size: 1.4rem;
  padding: 0.3rem 1.7rem 0.3rem 2rem;
  margin-right: 10px;
  border: 1px solid #8b8b8b;
}
@media only screen and (max-width: 900px) {
  p.s-news-mv-text-date span.s-news-mv-text-date-head {
    display: none;
  }
}

.s-news-mv-frame-left-bottom, .s-news-mv-frame-right-top, .s-news-mv-frame-right-bottom {
  content: '';
  width: 8vw;
  height: 8vw;
  position: absolute;
}
@media only screen and (max-width: 900px) {
  .s-news-mv-frame-left-bottom, .s-news-mv-frame-right-top, .s-news-mv-frame-right-bottom {
    display: none;
  }
}

.s-news-mv-frame-left-bottom {
  bottom: 0;
  left: 0;
}
.s-news-mv-frame-left-bottom.s-news-mv-frame-guest {
  border-left: solid 1px #da1a5d;
  border-bottom: solid 1px #da1a5d;
}
.s-news-mv-frame-left-bottom.s-news-mv-frame-event {
  border-left: solid 1px #FF9C1A;
  border-bottom: solid 1px #FF9C1A;
}
.s-news-mv-frame-left-bottom.s-news-mv-frame-service {
  border-left: solid 1px #5c78bb;
  border-bottom: solid 1px #5c78bb;
}

.s-news-mv-frame-right-top {
  top: 0;
  right: 0;
}
.s-news-mv-frame-right-top.s-news-mv-frame-guest {
  border-right: solid 1px #da1a5d;
  border-top: solid 1px #da1a5d;
}
.s-news-mv-frame-right-top.s-news-mv-frame-event {
  border-right: solid 1px #FF9C1A;
  border-top: solid 1px #FF9C1A;
}
.s-news-mv-frame-right-top.s-news-mv-frame-service {
  border-right: solid 1px #5c78bb;
  border-top: solid 1px #5c78bb;
}

.s-news-mv-frame-right-bottom {
  bottom: 0;
  right: 0;
}
.s-news-mv-frame-right-bottom.s-news-mv-frame-guest {
  border-right: solid 1px #da1a5d;
  border-bottom: solid 1px #da1a5d;
}
.s-news-mv-frame-right-bottom.s-news-mv-frame-event {
  border-right: solid 1px #FF9C1A;
  border-bottom: solid 1px #FF9C1A;
}
.s-news-mv-frame-right-bottom.s-news-mv-frame-service {
  border-right: solid 1px #5c78bb;
  border-bottom: solid 1px #5c78bb;
}

.s-news-contents {
  padding-bottom: 50px;
}

@media only screen and (max-width: 900px) {
  .s-news-contents-border {
    content: '';
    background-color: #C5C5C5;
    height: 1px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.s-news-contents-desc-wrap {
  color: #fff;
}

.s-news-release-wrap {
  color: #fff;
  padding: 50px 0;
  background-color: #2E2E2E;
}
@media only screen and (max-width: 900px) {
  .s-news-release-wrap {
    padding: 50px 0 0;
  }
}

.s-news-release-header {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  padding-left: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .s-news-release-header {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.s-news-release-header::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 5px;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 10px;
  height: 60%;
  background-color: #FF9C1A;
}

.s-news-release-img {
  margin-bottom: 20px;
}

.s-news-release-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .s-news-release-title {
    font-size: 1.6rem;
  }
}

/*==============================
-Single
===============================*/
.s-sc-space {
  display: block;
  padding-top: 20px;
}

.s-sc-title {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .s-sc-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1.6;
  }
}

.s-sc-header {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-header {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.s-sc-benefits {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  padding-left: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-benefits {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.s-sc-benefits::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 5px;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 10px;
  height: 60%;
  background-color: #FF9C1A;
}

.s-sc-guest {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  padding-left: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-guest {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.s-sc-guest::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 5px;
  -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 10px;
  height: 60%;
  background-color: #FF9C1A;
}

.s-sc-men {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #1558e3;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-men {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.s-sc-ladies {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #d21c63;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-ladies {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.s-sc-common {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #1cb45d;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-common {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.s-sc-lead {
  display: block;
  color: #C5C5C5;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.8;
  letter-spacing: 3px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 900px) {
  .s-sc-lead {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.s-sc-attention {
  display: inline-block;
  color: #FF9C1A;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .s-sc-attention {
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}

.s-sc-linklead {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 5px;
}
@media only screen and (max-width: 900px) {
  .s-sc-linklead {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
}

.s-sc-link {
  display: inline;
  color: #FF9C1A;
  font-size: 1.4rem;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1.6;
  word-break: break-all;
  text-align: left;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.s-sc-link:hover {
  text-decoration: none;
  text-shadow: red;
}
@media only screen and (max-width: 900px) {
  .s-sc-link {
    display: block;
    font-size: 1.2rem;
    line-height: 1.75;
    letter-spacing: 2px;
  }
}

.s-sc-movie {
  position: relative;
  padding-top: 5%;
  margin-bottom: 20px;
  width: 50% !important;
}
@media only screen and (max-width: 900px) {
  .s-sc-movie {
    width: 100% !important;
    padding-top: 5%;
  }
}

.s-sc-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ======================================================
_custom.scss
====================================================== */
.a-fadein {
  -webkit-animation: a-fadein 0.8s both 0.4s ease;
  animation: a-fadein 0.8s both 0.4s ease;
  visibility: visible !important;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: perspective(0);
          transform: perspective(0);
}

@-webkit-keyframes a-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0) perspective(0);
            transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) perspective(0);
            transform: translate3d(0, 0, 0) perspective(0);
  }
}
@keyframes a-fadein {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0) perspective(0);
            transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) perspective(0);
            transform: translate3d(0, 0, 0) perspective(0);
  }
}


.p-top-mainvisual-top {
    display: none;
}

.u-pc {
display: block;
}
.u-sp {
display: none;
}

@media only screen and (max-width: 900px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

body .stt-lang-select.tr {
  top: 44px;
  right: 95px;
  border-radius: 4px;
}
body .stt-lang-select {
  background: #000;
  -webkit-box-shadow: 1px 2px 3px rgb(0 0 0 / 16%);
          box-shadow: 1px 2px 3px rgb(0 0 0 / 16%);
  border: none;
  top: 1%;
}
body .stt-lang-select .stt-select .stt-item {
  color: #aeaeae;
}
body .stt-lang-select .stt-select .stt-item.active {
  color: #fff;
}
body .stt-lang-select .stt-text {
  padding: 12px 32px 12px 16px;
  color: #FFF;
}
body .stt-lang-select .stt-text:after {
  top: 12px;
  right: 12px;
}
body .stt-lang-select:not(.on):hover .stt-text:after {
  color: #fff;
}

body .stt-lang-select.disabled:not(.on):hover .stt-text:after {
  color: #fff;
}
body .stt-lang-select .stt-select .stt-item:after {
  color: #999;
}
body .stt-lang-select .stt-select .stt-item:hover:after {
  color: #fff;
}

@media only screen and (max-width: 900px) {
  body .stt-lang-select.tr {
  top: 17px;
  right: 75px;
}
}

.page .c-all-page-mv-wrap {
  margin-bottom: 7%;
}
.page-id-81 .c-all-page-mv-wrap {
  margin-bottom: 15%;
}
.page-id-94 .c-all-page-mv-wrap {
  margin-bottom: 9%;
}
@media only screen and (max-width: 900px) {
.page-id-94 .c-all-page-mv-wrap {
  margin-bottom: 23%;
}
.page-id-102 .c-all-page-mv-wrap,
.page-id-85 .c-all-page-mv-wrap {
  margin-bottom: 20%;
}
}
.modal-a{
  display: block;
  width: 100%;
  text-align: center;
}
.modal-a img {
  width: 98%;
}
.modal-a-button{
  display: block;
  background: #da1a5d;
}
.modal-a-button:hover{
  background: #a90840;
}