@charset "UTF-8";
/* @import must be at top of file, otherwise CSS will not work */
/* =========================================================

Foundation

========================================================= */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
*/
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
* Remove default margin.
*/
body {
  margin: 0;
  font-family: "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
}

/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
  display: none;
}

/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
  background-color: transparent;
}

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
  font-weight: bold;
}

/**
* Address styling not present in Safari and Chrome.
*/
dfn {
  font-style: italic;
}

/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
* Address styling not present in IE 8/9.
*/
mark {
  background: #ff0;
  color: #000;
}

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
  vertical-align: bottom;
  border: 0;
}

/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
  margin: 0;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
  box-sizing: content-box;
  height: 0;
}

/**
* Contain overflow in all browsers.
*/
pre {
  overflow: auto;
}

/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
*    Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
  overflow: visible;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
  text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
  line-height: normal;
}

/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
*    (include `-moz` to future-proof).
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Define consistent border, margin, and padding.
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
  overflow: auto;
}

/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
  font-weight: bold;
}

/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/******************************************************************************
* FONT
*******************************************************************************/
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

footer,
header,
section {
  display: block;
}

dd,
dt,
li,
p,
pre,
td,
th {
  line-break: strict;
  word-break: break-strict;
}

dd,
div,
dl,
dt,
li,
ol,
p,
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input[type="text"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}

figure {
  margin: 0px;
}

/******************************************************************************

* BASIC

*******************************************************************************/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  /*height: 100%;*/
  color: #111;
  font-size: 1rem;
  font-family: "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  font-weight: 500;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  /*-moz-font-feature-settings: "palt";
  font-feature-settings: "palt";*/
  font-feature-settings: "palt";
  -ms-font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  /*letter-spacing: $letter-spacing-md;*/
  background: #fff;
  word-wrap: break-word;
  vertical-align: baseline;
  white-space: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

a {
  color: #fff;
  transition: opacity 0.3s ease;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}

a,
a:focus,
a:active,
a:hover,
a:visited,
:focus,
:active,
:hover,
:visited {
  outline: none !important;
  text-decoration: none;
}

/* =========================================================

Layout

========================================================= */
.l-container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 120px;
}
@media (max-width: 1023px) {
  .l-container {
    padding: 0 80px;
  }
}
@media (max-width: 767px) {
  .l-container {
    padding: 0 30px;
  }
}

.l-row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.l-row.l-gutter-0 {
  margin-right: 0;
  margin-left: 0;
}

.l-row.l-gutter-10 {
  margin-right: -5px;
  margin-left: -5px;
}

.l-row.l-gutter-20 {
  margin-right: -10px;
  margin-left: -10px;
}

.l-row.l-gutter-30 {
  margin-right: -15px;
  margin-left: -15px;
}

.l-row.l-gutter-40 {
  margin-right: -20px;
  margin-left: -20px;
}

.l-row.l-gutter-50 {
  margin-right: -25px;
  margin-left: -25px;
}

.l-row.l-gutter-60 {
  margin-right: -30px;
  margin-left: -30px;
}

.l-row.l-gutter-70 {
  margin-right: -35px;
  margin-left: -35px;
}

.l-row.l-gutter-80 {
  margin-right: -40px;
  margin-left: -40px;
}

.l-row.l-gutter-90 {
  margin-right: -45px;
  margin-left: -45px;
}

.l-row.l-gutter-100 {
  margin-right: -50px;
  margin-left: -50px;
}

.l-gutter-0 > [class^="l-col-"],
.l-gutter-0 > [class*="l-col-"] {
  padding-right: 0;
  padding-left: 0;
}

.l-gutter-10 > [class^="l-col-"],
.l-gutter-10 > [class*="l-col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.l-gutter-20 > [class^="l-col-"],
.l-gutter-20 > [class*="l-col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.l-gutter-30 > [class^="l-col-"],
.l-gutter-30 > [class*="l-col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.l-gutter-40 > [class^="l-col-"],
.l-gutter-40 > [class*="l-col-"] {
  padding-right: 20px;
  padding-left: 20px;
}

.l-gutter-50 > [class^="l-col-"],
.l-gutter-50 > [class*="l-col-"] {
  padding-right: 25px;
  padding-left: 25px;
}

.l-gutter-60 > [class^="l-col-"],
.l-gutter-60 > [class*="l-col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

.l-gutter-70 > [class^="l-col-"],
.l-gutter-70 > [class*="l-col-"] {
  padding-right: 35px;
  padding-left: 35px;
}

.l-gutter-80 > [class^="l-col-"],
.l-gutter-80 > [class*="l-col-"] {
  padding-right: 40px;
  padding-left: 40px;
}

.l-gutter-90 > [class^="l-col-"],
.l-gutter-90 > [class*="l-col-"] {
  padding-right: 45px;
  padding-left: 45px;
}

.l-gutter-100 > [class^="l-col-"],
.l-gutter-100 > [class*="l-col-"] {
  padding-right: 50px;
  padding-left: 50px;
}

.l-row.is-reverse {
  flex-direction: row-reverse;
}

.l-col.is-reverse {
  flex-direction: column-reverse;
}

.l-col-xs,
.l-col-xs-1,
.l-col-xs-2,
.l-col-xs-2_5,
.l-col-xs-3,
.l-col-xs-4,
.l-col-xs-5,
.l-col-xs-6,
.l-col-xs-7,
.l-col-xs-8,
.l-col-xs-9,
.l-col-xs-10,
.l-col-xs-11,
.l-col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.l-col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.l-col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.l-col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.l-col-xs-2_5 {
  flex-basis: 20%;
  max-width: 20%;
}

.l-col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.l-col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.l-col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.l-col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.l-col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.l-col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.l-col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.l-col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.l-col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.l-col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.l-col-xs-offset-1 {
  margin-left: 8.333%;
}

.l-col-xs-offset-2 {
  margin-left: 16.667%;
}

.l-col-xs-offset-2_5 {
  margin-left: 20%;
}

.l-col-xs-offset-3 {
  margin-left: 25%;
}

.l-col-xs-offset-4 {
  margin-left: 33.333%;
}

.l-col-xs-offset-5 {
  margin-left: 41.667%;
}

.l-col-xs-offset-6 {
  margin-left: 50%;
}

.l-col-xs-offset-7 {
  margin-left: 58.333%;
}

.l-col-xs-offset-8 {
  margin-left: 66.667%;
}

.l-col-xs-offset-9 {
  margin-left: 75%;
}

.l-col-xs-offset-10 {
  margin-left: 83.333%;
}

.l-col-xs-offset-11 {
  margin-left: 91.667%;
}

.l-start-xs {
  justify-content: flex-start;
  text-align: start;
}

.l-center-xs {
  justify-content: center;
  text-align: center;
}

.l-end-xs {
  justify-content: flex-end;
  text-align: end;
}

.l-top-xs {
  align-items: flex-start;
}

.l-middle-xs {
  align-items: center;
}

.l-bottom-xs {
  align-items: flex-end;
}

.l-around-xs {
  justify-content: space-around;
}

.l-between-xs {
  justify-content: space-between;
}

.l-first-xs {
  order: -1;
}

.l-last-xs {
  order: 1;
}

@media (min-width: 768px) {
  .l-col-sm,
  .l-col-sm-1,
  .l-col-sm-2,
  .l-col-sm-2_5,
  .l-col-sm-3,
  .l-col-sm-4,
  .l-col-sm-5,
  .l-col-sm-6,
  .l-col-sm-7,
  .l-col-sm-8,
  .l-col-sm-9,
  .l-col-sm-10,
  .l-col-sm-11,
  .l-col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .l-col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .l-col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .l-col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .l-col-sm-2_5 {
    flex-basis: 20%;
    max-width: 20%;
  }

  .l-col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .l-col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .l-col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .l-col-sm-6 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .l-col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .l-col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .l-col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .l-col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .l-col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .l-col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .l-col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .l-col-sm-offset-2_5 {
    margin-left: 20%;
  }

  .l-col-sm-offset-3 {
    margin-left: 25%;
  }

  .l-col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .l-col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .l-col-sm-offset-6 {
    margin-left: 50%;
  }

  .l-col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .l-col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .l-col-sm-offset-9 {
    margin-left: 75%;
  }

  .l-col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .l-col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .l-start-sm {
    justify-content: flex-start;
    text-align: start;
  }

  .l-center-sm {
    justify-content: center;
    text-align: center;
  }

  .l-end-sm {
    justify-content: flex-end;
    text-align: end;
  }

  .l-top-sm {
    align-items: flex-start;
  }

  .l-middle-sm {
    align-items: center;
  }

  .l-bottom-sm {
    align-items: flex-end;
  }

  .l-around-sm {
    justify-content: space-around;
  }

  .l-between-sm {
    justify-content: space-between;
  }

  .l-first-sm {
    order: -1;
  }

  .l-last-sm {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .l-col-md,
  .l-col-md-1,
  .l-col-md-2,
  .l-col-md-2_5,
  .l-col-md-3,
  .l-col-md-4,
  .l-col-md-5,
  .l-col-md-6,
  .l-col-md-7,
  .l-col-md-8,
  .l-col-md-9,
  .l-col-md-10,
  .l-col-md-11,
  .l-col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .l-col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .l-col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .l-col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .l-col-md-2_5 {
    flex-basis: 20%;
    max-width: 20%;
  }

  .l-col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .l-col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .l-col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .l-col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .l-col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .l-col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .l-col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .l-col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .l-col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-md-offset-1 {
    margin-left: 8.333%;
  }

  .l-col-md-offset-2 {
    margin-left: 16.667%;
  }

  .l-col-md-offset-2_5 {
    margin-left: 20%;
  }

  .l-col-md-offset-3 {
    margin-left: 25%;
  }

  .l-col-md-offset-4 {
    margin-left: 33.333%;
  }

  .l-col-md-offset-5 {
    margin-left: 41.667%;
  }

  .l-col-md-offset-6 {
    margin-left: 50%;
  }

  .l-col-md-offset-7 {
    margin-left: 58.333%;
  }

  .l-col-md-offset-8 {
    margin-left: 66.667%;
  }

  .l-col-md-offset-9 {
    margin-left: 75%;
  }

  .l-col-md-offset-10 {
    margin-left: 83.333%;
  }

  .l-col-md-offset-11 {
    margin-left: 91.667%;
  }

  .l-start-md {
    justify-content: flex-start;
    text-align: start;
  }

  .l-center-md {
    justify-content: center;
    text-align: center;
  }

  .l-end-md {
    justify-content: flex-end;
    text-align: end;
  }

  .l-top-md {
    align-items: flex-start;
  }

  .l-middle-md {
    align-items: center;
  }

  .l-bottom-md {
    align-items: flex-end;
  }

  .l-around-md {
    justify-content: space-around;
  }

  .l-between-md {
    justify-content: space-between;
  }

  .l-first-md {
    order: -1;
  }

  .l-last-md {
    order: 1;
  }
}
@media (min-width: 1281px) {
  .l-col-lg,
  .l-col-lg-1,
  .l-col-lg-2,
  .l-col-lg-2_5,
  .l-col-lg-3,
  .l-col-lg-4,
  .l-col-lg-5,
  .l-col-lg-6,
  .l-col-lg-7,
  .l-col-lg-8,
  .l-col-lg-9,
  .l-col-lg-10,
  .l-col-lg-11,
  .l-col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .l-col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .l-col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .l-col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .l-col-lg-2_5 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .l-col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .l-col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .l-col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .l-col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .l-col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .l-col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .l-col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .l-col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .l-col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .l-col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .l-col-lg-offset-2_5 {
    margin-left: 20%;
  }

  .l-col-lg-offset-3 {
    margin-left: 25%;
  }

  .l-col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .l-col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .l-col-lg-offset-6 {
    margin-left: 50%;
  }

  .l-col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .l-col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .l-col-lg-offset-9 {
    margin-left: 75%;
  }

  .l-col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .l-col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .l-start-lg {
    justify-content: flex-start;
    text-align: start;
  }

  .l-center-lg {
    justify-content: center;
    text-align: center;
  }

  .l-end-lg {
    justify-content: flex-end;
    text-align: end;
  }

  .l-top-lg {
    align-items: flex-start;
  }

  .l-middle-lg {
    align-items: center;
  }

  .l-bottom-lg {
    align-items: flex-end;
  }

  .l-around-lg {
    justify-content: space-around;
  }

  .l-between-lg {
    justify-content: space-between;
  }

  .l-first-lg {
    order: -1;
  }

  .l-last-lg {
    order: 1;
  }
}
@media (min-width: 1681px) {
  .l-col-xlg,
  .l-col-xlg-1,
  .l-col-xlg-2,
  .l-col-xlg-2_5,
  .l-col-xlg-3,
  .l-col-xlg-4,
  .l-col-xlg-5,
  .l-col-xlg-6,
  .l-col-xlg-7,
  .l-col-xlg-8,
  .l-col-xlg-9,
  .l-col-xlg-10,
  .l-col-xlg-11,
  .l-col-xlg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .l-col-xlg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .l-col-xlg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .l-col-xlg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .l-col-xlg-2_5 {
    flex-basis: 20%;
    max-width: 20%;
  }

  .l-col-xlg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .l-col-xlg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .l-col-xlg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .l-col-xlg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-xlg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .l-col-xlg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .l-col-xlg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .l-col-xlg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .l-col-xlg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .l-col-xlg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-xlg-offset-1 {
    margin-left: 8.333%;
  }

  .l-col-xlg-offset-2 {
    margin-left: 16.667%;
  }

  .l-col-xlg-offset-3 {
    margin-left: 25%;
  }

  .l-col-xlg-offset-4 {
    margin-left: 33.333%;
  }

  .l-col-xlg-offset-5 {
    margin-left: 41.667%;
  }

  .l-col-xlg-offset-6 {
    margin-left: 50%;
  }

  .l-col-xlg-offset-7 {
    margin-left: 58.333%;
  }

  .l-col-xlg-offset-8 {
    margin-left: 66.667%;
  }

  .l-col-xlg-offset-9 {
    margin-left: 75%;
  }

  .l-col-xlg-offset-10 {
    margin-left: 83.333%;
  }

  .l-col-xlg-offset-11 {
    margin-left: 91.667%;
  }

  .l-start-xlg {
    justify-content: flex-start;
    text-align: start;
  }

  .l-center-xlg {
    justify-content: center;
    text-align: center;
  }

  .l-end-xlg {
    justify-content: flex-end;
    text-align: end;
  }

  .l-top-xlg {
    align-items: flex-start;
  }

  .l-middle-xlg {
    align-items: center;
  }

  .l-bottom-xlg {
    align-items: flex-end;
  }

  .l-around-xlg {
    justify-content: space-around;
  }

  .l-between-xlg {
    justify-content: space-between;
  }

  .l-first-xlg {
    order: -1;
  }

  .l-last-xlg {
    order: 1;
  }
}
/*wrapper*/
.l-wrapper {
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition-delay: 1.3s;
}
.is-page-loaded .l-wrapper {
  opacity: 1;
}
.is-slide-in .l-wrapper {
  opacity: 0;
}

/*content*/
.l-content {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.l-content.p-top {
  padding: 0;
}

.l-content__body {
  padding-top: 220px;
  transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(60px);
  transition-delay: 1.3s;
  opacity: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .l-content__body {
    padding-top: 120px;
  }
}
.is-page-loaded .l-content__body {
  transform: translateY(0);
  opacity: 1;
}

.l-content__heading {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .l-content__heading {
    margin-bottom: 50px;
  }
}
.l-content__heading span {
  display: block;
}
.l-content__heading-en {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .l-content__heading-en {
    font-size: 60px;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
  }
}
.l-content__heading-en:first-letter {
  color: #d81921;
}
.l-content__heading-jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.l-content__inner {
  background: #fff;
}

/*header*/
.l-header {
  position: fixed;
  width: 100%;
  height: 120px;
  top: 0;
  right: 0;
  z-index: 11111;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  transition-delay: 1.3s;
  opacity: 0;
}
.is-page-loaded .l-header {
  opacity: 1;
}
.is-header-bg-show .l-header {
  background: #fff;
}
@media (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.is-gnav-open .l-header {
  background: none;
  transition-delay: 0s;
}

.l-header-logo {
  position: absolute;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  z-index: 111;
  opacity: 0;
  left: 50px;
  top: 50px;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  transition-delay: 1.3s;
}
@media (max-width: 767px) {
  .l-header-logo {
    left: 20px;
    top: 35px;
  }
}
.is-page-loaded .l-header-logo {
  opacity: 1;
}
.is-home .l-header-logo svg {
  fill: #111 !important;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
}
.is-header-bg-show .l-header-logo svg {
  fill: #111 !important;
}
@media (max-width: 767px) {
  .is-header-bg-show .l-header-logo {
    transition-delay: 0s;
    top: 15px;
  }
  .is-header-bg-show .l-header-logo svg {
    width: 95px;
  }
}
.is-gnav-open .l-header-logo svg {
  fill: #fff !important;
}

.l-header-nav {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  transition-delay: 1.3s;
}
.is-page-loaded .l-header-nav {
  opacity: 1;
}
@media (max-width: 1023px) {
  .l-header-nav {
    display: none;
  }
}

.l-header-nav__item {
  display: inline-block;
}
.l-header-nav__item a {
  display: block;
  margin-right: 30px;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #111;
}
.l-header-nav__item a:hover {
  opacity: 0.5;
}
.is-home .l-header-nav__item a {
  color: #111;
}
.is-header-bg-show .l-header-nav__item a {
  color: #111;
}
.l-header-nav__item--ticket {
  vertical-align: middle;
  /* pointer-events: none; */
}
.l-header-nav__item--ticket span {
  /* opacity: 0.2; */
}
.l-header-nav__item--ticket span.over {
}
.l-header-nav__item--ticket a {
  padding: 15px 0;
  background: #111;
  margin-right: -4px;
  border: 1px solid #111;
  color: #fff !important;
  position: relative;
  width: 140px;
  text-align: center;
}
.l-header-nav__item--ticket a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-header-nav__item--ticket a:hover {
  color: #111 !important;
  opacity: 1;
}
.l-header-nav__item--ticket a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.l-header-nav__item--ticket a:hover span {
  position: relative;
  z-index: 1;
}
.l-header-nav__item--shop {
  vertical-align: middle;
}
.l-header-nav__item--shop a {
  padding: 15px 0;
  background: #fff;
  color: #111 !important;
  border: 1px solid #111;
  position: relative;
  width: 140px;
  text-align: center;
}
.l-header-nav__item--shop a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #111;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-header-nav__item--shop a:hover {
  color: #fff !important;
  opacity: 1;
}
.l-header-nav__item--shop a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.l-header-nav__item--shop a:hover span {
  position: relative;
  z-index: 1;
}

.l-gnav {
  display: none;
  width: 100%;
  height: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-gnav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #d81921;
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.is-gnav-open .l-gnav {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.is-gnav-open .l-gnav:before {
  width: 100%;
}
@media (max-width: 1023px) {
  .l-gnav {
    display: block;
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .l-gnav {
    width: 100%;
  }
}

.l-gnav__body {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}

.l-gnav__menu {
  width: 100%;
}

.l-gnav__item {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  line-height: 1;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .l-gnav__item {
    font-size: 2.4rem;
  }
}
.l-gnav__item a {
  padding: 10px 40px;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
.l-gnav__item a span {
  transition: padding 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-gnav__item a span:after {
  width: 20px;
  height: 1px;
  background: #fff;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-gnav__item a:hover {
  color: #fff;
}
.l-gnav__item--ticket a {
  padding: 15px 0;
  background: #111;
  border: 1px solid #111;
  color: #fff !important;
  position: relative;
  width: 160px;
  margin: 10px 0;
  /* pointer-events: none; */
}
.l-gnav__item--ticket a span {
  /* opacity: 0.2; */
}
.l-gnav__item--ticket a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-gnav__item--ticket a:hover {
  color: #111 !important;
  opacity: 1;
}
.l-gnav__item--ticket a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.l-gnav__item--ticket a:hover span {
  position: relative;
  z-index: 1;
}
.l-gnav__item--shop a {
  padding: 15px 0;
  background: #fff;
  color: #111 !important;
  position: relative;
  width: 160px;
}
.l-gnav__item--shop a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #111;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-gnav__item--shop a:hover {
  color: #fff !important;
  opacity: 1;
}
.l-gnav__item--shop a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.l-gnav__item--shop a:hover span {
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.l-gnav-toggle {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 11111;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1) 1s, left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: none;
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 2s;
  opacity: 0;
}
.l-gnav-toggle.is-fixed {
  position: fixed;
}
.is-page-loaded .l-gnav-toggle {
  opacity: 1;
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}
@media (max-width: 1023px) {
  .l-gnav-toggle {
    display: block;
    right: 20px;
    top: 30px;
  }
}
@media (max-width: 767px) {
  .l-gnav-toggle {
    display: block;
    right: 20px;
    top: 30px;
  }
  .is-header-bg-show .l-gnav-toggle {
    top: 13px;
    right: 15px;
    transition-delay: 0s;
  }
}

.l-gnav-toggle__inner {
  width: 30px;
  position: absolute;
  top: 8px;
  left: 10px;
}

.l-gnav-toggle__bar {
  display: block;
  width: 30px;
  height: 2px;
  /* background: $color-primary;*/
  background: #111;
  transition: top 0.3s;
  position: absolute;
  z-index: 10;
}
.is-home .l-gnav-toggle__bar {
  background: #111;
}
.l-gnav-toggle__bar--first {
  transform: rotate(0deg);
  top: 0;
}
.l-gnav-toggle__bar--second {
  transform: rotate(0deg);
  top: 7px;
}
.l-gnav-toggle__bar--third {
  transform: rotate(0deg);
  top: 14px;
}
.is-header-bg-show .l-gnav-toggle__bar {
  background: #111;
}
.is-gnav-open .l-gnav-toggle__bar {
  background: #fff;
  transition: all 0.3s;
}
.is-gnav-open .l-gnav-toggle__bar--first {
  transform: rotate(45deg);
  top: 8px;
}
.is-gnav-open .l-gnav-toggle__bar--second {
  opacity: 0;
}
.is-gnav-open .l-gnav-toggle__bar--third {
  transform: rotate(-45deg);
  top: 8px;
}

.l-gnav-toggle:hover .l-gnav-toggle__bar {
  animation: moveLineLeftToRight 0.3s backwards;
}
.l-gnav-toggle:hover .l-gnav-toggle__bar--first {
  animation-delay: 0;
}
.l-gnav-toggle:hover .l-gnav-toggle__bar--second {
  animation-delay: 0.1s;
}
.l-gnav-toggle:hover .l-gnav-toggle__bar--third {
  animation-delay: 0.2s;
}
.is-gnav-open .l-gnav-toggle:hover .l-gnav-toggle__bar {
  animation: none;
}

.l-main {
  width: 100%;
  overflow: hidden;
}
.l-footer {
  padding: 120px 0 100px;
  border-top: 1px solid #e6e6e6;
  position: relative;
  z-index: 1;
  background: #fff;
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition-delay: 1.3s;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 60px 0 40px;
  }
}
.is-page-loaded .l-footer {
  opacity: 1;
}

.l-footer__body {
  padding: 0 120px;
}
@media (max-width: 767px) {
  .l-footer__body {
    padding: 0 30px;
  }
}

.l-footer-logo {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  .l-footer-logo {
    margin-bottom: 50px;
  }
  .l-footer-logo img {
    width: 130px;
  }
}

.l-footer-sns {
  position: absolute;
  top: 110px;
  right: 120px;
}
@media (max-width: 767px) {
  .l-footer-sns {
    top: 50px;
    right: 30px;
  }
}

.l-footer-sns__menu {
  display: table;
  margin-left: auto;
}

.l-footer-sns__list {
  display: flex;
}

.l-footer-sns__item {
  margin-left: 10px;
}
.l-footer-sns__item a {
  color: #111;
  display: block;
  width: 60px;
  height: 60px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  line-height: 60px;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 767px) {
  .l-footer-sns__item a {
    width: 50px;
    height: 50px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    line-height: 50px;
  }
}
.l-footer-sns__item a:hover {
  color: #fff;
  background: #111;
  border: 1px solid #111;
}

.l-footer-copyright {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.2;
  letter-spacing: 0.1em;
  margin-top: 90px;
}

/*@import "layout/parallax";*/
/* =========================================================

Object

========================================================= */
/* ---------------------------------------------------------

Component

--------------------------------------------------------- */
.c-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.02;
}
.c-background img {
  width: 630px;
  height: 567px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-background img {
    width: 250px;
    height: 225px;
  }
}

.c-button {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-button {
    margin-top: 35px;
  }
}
.c-button a {
  display: table;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #111;
  width: 700px;
  padding: 42px 0;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #111;
}
@media (max-width: 767px) {
  .c-button a {
    max-width: 100%;
    width: calc(100% - 60px);
    padding: 30px 0;
  }
  .p-top-access .c-button a {
    width: 100%;
  }
}
.c-button a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #111;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-button a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.c-button a:hover span {
  color: #fff;
}
.c-button span {
  position: relative;
  z-index: 1;
}

.c-button-2 {
  display: inline-block;
  vertical-align: middle;
}
.c-button-2 a {
  display: table;
  position: relative;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #111;
  margin: 0 auto;
  text-align: center;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #111;
}
@media (max-width: 767px) {
  .c-button-2 a {
    width: 140px;
    height: 40px;
    line-height: 40px;
  }
  .p-top-ticket .c-button-2 a {
    width: 100px;
  }
}
.c-button-2 a:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-button-2 a:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
.c-button-2 a:hover span {
  color: #111;
}
.is-confirm .c-button-2 {
  display: none !important;
}
.c-button-2 span {
  position: relative;
  z-index: 1;
}
.p-contact__body .c-button-2 {
  display: table;
  margin: 0 auto;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?pguk0y");
  src: url("../fonts/icomoon.eot?pguk0y#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?pguk0y") format("truetype"), url("../fonts/icomoon.woff?pguk0y") format("woff"), url("../fonts/icomoon.svg?pguk0y#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="c-icon-"],
[class*="c-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-icon-mixcloud:before {
  content: "";
}

.c-icon-facebook:before {
  content: "";
}

.c-icon-instagram:before {
  content: "";
}

.c-icon-spotify:before {
  content: "";
}

.c-icon-twitter:before {
  content: "";
}

.c-icon-youtube:before {
  content: "";
}

.c-icon-appleinc:before {
  content: "";
}

.c-icon-soundcloud:before {
  content: "";
}

.c-modal__item {
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11111111;
  opacity: 0;
  height: 100vh;
  background: #fff;
  pointer-events: none;
}
.c-modal__item.is-open {
  opacity: 1;
  pointer-events: all;
}

.fixed {
  overflow: hidden;
}

.c-modal-close {
  right: 40px;
  position: fixed;
  top: 40px;
  width: auto;
  z-index: 222222;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #111;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 767px) {
  .c-modal-close {
    right: 20px;
    top: 20px;
    width: 55px;
    height: 55px;
  }
}
.c-modal-close a {
  display: block;
}
.c-modal-close:hover {
  transition-delay: 0s;
}
.is-page-loaded .c-modal-close {
  opacity: 1;
}

.c-modal-close__inner {
  z-index: 1111;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 12px;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-modal-close__inner {
    height: 14px;
  }
}

.c-modal-close__bar {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: top 0.3s;
  position: absolute;
  left: 0px;
  z-index: 222222;
  transform-origin: center center;
}
.c-modal-close__bar--first {
  transform: rotate(45deg);
  top: 6px;
  animation-delay: 0;
}
.is-close .c-modal-close__bar--first {
  transform: rotate(0deg);
}
.c-modal-close__bar--third {
  transform: rotate(-45deg);
  top: 6px;
  animation-delay: 0.6s;
}

.c-modal-close__text {
  transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  left: -102%;
}
@media (max-width: 767px) {
  .c-modal-close__text {
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
  }
}

.c-modal__heading {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 50px;
}

.c-modal__subttl {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  margin-bottom: 50px;
}

.c-modal__paragraph {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}

.c-modal__inner {
  padding: 120px 0;
  width: 900px;
  margin: 0 auto;
  height: 100%;
  z-index: 111;
  position: relative;
  background: #fff;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .c-modal__inner {
    padding: 120px 30px;
    width: 100%;
  }
}

/*paragraph*/
.c-paragraph {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  font-feature-settings: "palt";
  font-family: "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-paragraph {
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
  }
}

.c-paragraph--lg {
  font-size: 15px;
  font-size: 1.5rem;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-paragraph--lg {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (min-width: 767px) {
  .c-paragraph--lg {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  }
}

.c-paragraph--md {
  font-size: 14px;
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-paragraph--md {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media (min-width: 767px) {
  .c-paragraph--md {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  }
}

.c-paragraph--sm {
  font-size: 13px;
  font-size: 1.3rem;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-paragraph--sm {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-paragraph--xs {
  font-size: 12px;
  font-size: 1.2rem;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-paragraph--xs {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1111;
  top: 0;
  right: 0;
}
.is-page-loaded .c-preloader {
  z-index: -2;
}
.is-page-loaded .c-preloader:before {
  width: 0%;
  transition-delay: 3s;
}
.is-slide-in .c-preloader {
  z-index: 11112;
  width: 100%;
}
.c-preloader:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.is-slide-in .c-preloader:before {
  z-index: 1111;
  width: 100%;
  transition-delay: 0s;
}

.c-preloader__inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 630px;
  height: 567px;
  margin: 0 auto;
  z-index: 11111;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-preloader__inner {
    width: 250px;
    height: 225px;
  }
}

.c-preloader__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  z-index: 1111;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition-delay: 0.8s;
  height: 100%;
}
.is-page-loaded .c-preloader__bg {
  opacity: 0;
}
.is-slide-in .c-preloader__bg {
  opacity: 0.2;
  z-index: 111111;
  transition-delay: 0s;
}
.c-preloader__bg img {
  width: 630px;
  height: 100%;
}
@media (max-width: 767px) {
  .c-preloader__bg img {
    width: 250px;
  }
}

.c-preloader__logo {
  z-index: 1;
  overflow: hidden;
  position: relative;
  width: 0;
  height: 100%;
  z-index: 1111;
}
.is-page-loaded .c-preloader__logo {
  width: 100%;
  transition: width 0.6s ease 0s, opacity 1s ease-out 1.5s;
  opacity: 0.02;
}
.is-slide-in .c-preloader__logo {
  width: 0;
  transition: width 0s ease 0s;
}
.c-preloader__logo img {
  width: 630px;
  height: 100%;
}
@media (max-width: 767px) {
  .c-preloader__logo img {
    width: 250px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
}
.p-top-artist .slick-list {
  padding: 0 11.1% 0 0 !important;
}
.p-top-music_video .slick-list {
  padding: 0 12.1% 0 0 !important;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  bottom: 1px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 111;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.9;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}
.slick-prev:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-image: url(../images/common/prev.svg);
}
@media (max-width: 767px) {
  .slick-prev:before {
    width: 40px;
    height: 40px;
    left: 0;
    background-position: center center;
  }
}
.slick-prev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 1px;
  height: 50px;
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .slick-prev:after {
    width: 40px;
    height: 40px;
    left: 40px;
  }
}

.slick-next {
  left: 51px;
}
@media (max-width: 767px) {
  .slick-next {
    left: 41px;
  }
}
.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-image: url(../images/common/next.svg);
}
@media (max-width: 767px) {
  .slick-next:before {
    width: 40px;
    height: 40px;
    background-position: center center;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slick-counter {
  position: absolute;
  bottom: -30px;
  left: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .slick-counter {
    font-size: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    left: 20px;
  }
}
.slick-counter span {
  display: inline-block;
  vertical-align: middle;
}
.slick-counter .current {
  position: relative;
  color: #fff;
}
.slick-counter .current:before {
  color: #fff;
  content: "0";
  position: absolute;
  top: 0;
  left: -7px;
}
.slick-counter .total {
  position: relative;
  color: #fff;
}
.slick-counter .total:before {
  content: "0";
  position: absolute;
  top: 0;
  color: #fff;
  left: -7px;
}
.slick-counter .border {
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 1px 15px 0 7px;
}

.c-news__list {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-news__list {
    display: block;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-news__item {
  flex: 0 0 auto;
  flex-basis: 25%;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .c-news__item {
    margin-bottom: 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #e6e6ee;
  }
}
.p-news__body .c-news__item {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .p-news__body .c-news__item {
    margin-bottom: 30px;
  }
}
.p-news__body .c-news__item:last-child {
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  .p-news__body .c-news__item:last-child {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .c-news__item {
    flex-basis: 100%;
  }
}
.c-news__item a:hover .c-news__image img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .c-news__item a {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.c-news__image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-news__image {
    flex: 0 0 auto;
    flex-basis: 40%;
    padding: 0 10px;
  }
}
.c-news__image img {
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

@media (max-width: 767px) {
  .c-news__textarea {
    flex: 0 0 auto;
    flex-basis: 60%;
    padding: 0 10px;
  }
}

.c-news__date {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 25px 0 10px;
  color: #111;
}
@media (max-width: 767px) {
  .c-news__date {
    margin: 15px 0 15px;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
  }
}
.p-news-detail__main .c-news__date {
  margin: 0 0 10px;
}
.p-news-detail__latest .c-news__date {
  margin: 20px 0 13px;
}

.c-news__title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  color: #111;
}
@media (max-width: 767px) {
  .c-news__title {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2;
  }
}
.p-news-detail__main .c-news__title {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-news-detail__main .c-news__title {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
  }
}
.p-news-detail__latest .c-news__title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-news-detail__latest .c-news__title {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
  }
}

.c-common {
  background: #fff;
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition-delay: 1.3s;
}
.is-page-loaded .c-common {
  opacity: 1;
}

.c-common-section {
  padding: 140px 0;
  border-top: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .c-common-section {
    padding: 60px 0;
  }
}
.c-common-section a {
  color: #111;
  text-decoration: underline;
}

.c-common__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-common__inner {
    max-width: 100%;
    width: 100%;
  }
}

.c-common__heading {
  text-align: center;
  margin-bottom: 40px;
}
.c-common__heading span {
  display: block;
}
.c-common__heading-en {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .c-common__heading-en {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
  }
}
.c-common__heading-jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .c-common-sponsor {
    padding: 0 30px;
  }
}

.c-common-sponsor__list {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  border: 0.5px solid #e6e6e600;
  /* border-bottom: 1px solid #e6e6e6; */
}
@media (max-width: 767px) {
  .c-common-sponsor__list {
    flex-wrap: wrap;
  }
  .c-common-sponsor__list::after {
    content: "";
    width: 33.333%;
  }
  #patner .c-common-sponsor__list::after {
    content: none;
  }
}

.c-common-sponsor__item {
  width: 200px;
  height: 140px;
  position: relative;
  background: #fff;
  border: 0.5px solid #e6e6e6;
  flex-basis: 16.667%;
  max-width: 16.667%;
}
.c-common-sponsor__item a {
  display: table;
  text-decoration: unset;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-common-sponsor__item a p {
  text-decoration: unset;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-common-sponsor__item {
    flex-basis: 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    height: 120px;
    /* border-bottom: 1px solid #e6e6e6; */
  }
}
.c-common-sponsor__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 35%);
}

@media (max-width: 767px) {
  .c-common-section--support p {
    padding: 0 30px;
  }
}

.c-form-section {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}
@media (max-width: 767px) {
  .c-form-section {
    font-size: 1.2rem;
    padding-bottom: 20px;
    margin-top: 10px;
  }
}

.c-form-lead {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-form-lead {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
  }
}
.c-form-lead span {
  color: #d5007d;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-form-lead span {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

.c-form-subtext {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #888;
  margin-bottom: 10px;
}
.c-form-subtext--2 {
  color: #131313;
  margin-top: 16px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .c-form-subtext--2 {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.form2 .c-form-subtext--2:first-child {
  margin-top: 0px;
}

.c-form-table {
  width: 100%;
  opacity: 1;
}
@media (max-width: 767px) {
  .c-form-table {
    display: block;
  }
}

.c-form-table__head {
  width: 25%;
  vertical-align: top;
  text-align: left;
}
@media (max-width: 767px) {
  .c-form-table__head {
    width: 100%;
  }
}

.c-form-thanks-head {
  text-align: center;
}

.c-form-table__body {
  width: 75%;
  padding-bottom: 30px;
  position: relative;
  vertical-align: top;
}
@media (max-width: 767px) {
  .c-form-table__body {
    width: 100%;
    display: block;
    padding-bottom: 10px;
  }
}
.c-form-table__body--2 {
  border: none;
  padding-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-form-table__body--2 {
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
  }
}
.c-form-table__body--2 p {
  margin-bottom: 5px;
  display: inline-block;
  padding-right: 20px;
}

.c-form-table__text {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  display: block;
  padding: 16px 20px 16px 0;
  text-align: left;
}
@media (max-width: 767px) {
  .c-form-table__text {
    font-size: 1.2rem;
    padding: 16px 20px 10px 0;
    text-align: left;
  }
}
.c-form-table__body .c-form-table__text {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.c-form-table__row {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
}
.c-form-table__row:last-child {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .c-form-table__row {
    display: block;
    margin-bottom: 5px;
  }
}

.c-form-table__row:last-of-type .c-form-table__body {
  padding-bottom: 0;
}

.c-form-table__input {
  width: 100%;
  display: block;
  padding: 15px;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
}
@media (max-width: 767px) {
  .c-form-table__input {
    padding: 12px;
  }
}

.c-form-table__select-wrap select {
  display: inline-block;
  padding: 15px;
  appearance: none;
  box-sizing: border-box;
  border: 1px solid #111;
  border-radius: 0;
  outline-offset: 0px;
  -webkit-appearance: none;
}

.c-form-table__select-inner {
  display: inline-block;
  padding-right: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .c-form-table__select-inner {
    display: block;
    margin-bottom: 15px;
  }
  .c-form-table__select-inner:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c-form-table__select-inner {
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
  }
}
.c-form-table__select-inner span {
  letter-spacing: 0.05em;
}

.c-form-table__select-wrap .c-form-table__select-check {
  background: #fff;
}

.c-form-table__input--sm {
  width: 100%;
}
.c-form-table__input::-webkit-input-placeholder {
  color: #e6e6e6;
}

.c-form-table__input:-ms-input-placeholder {
  color: #e6e6e6;
}

.c-form-table__input::-moz-placeholder {
  color: #e6e6e6;
}

input.sample::-webkit-input-placeholder {
  color: #ccc;
  font-weight: normal;
}

input.sample:-ms-input-placeholder {
  color: #ccc;
  font-weight: normal;
}

input.sample::-moz-placeholder {
  color: #ccc;
  font-weight: normal;
}

.c-form-table__input--textarea {
  height: 300px;
}
@media (max-width: 767px) {
  .c-form-table__input--textarea {
    height: 180px;
  }
}

.c-form-table__input--select {
  background-image: url(/images/common/icon_arrow_down.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 25px;
  position: relative;
}
.c-form-table__input--select selected {
  color: #dbdbdb;
}
@media (max-width: 767px) {
  .c-form-table__input--select {
    padding: 15px;
  }
}

.c-form-table__error {
  color: #d81922;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .c-form-table__error {
    margin-top: 5px;
  }
}

.c-form-submit-button {
  width: 180px;
  position: relative;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .c-form-submit-button {
    margin: 30px auto 0;
  }
}
.c-form-submit-button:hover {
  color: #fff;
}
.c-form-submit-button:hover:after {
  content: "";
  left: 0;
  width: 100%;
  right: auto;
}
@media (max-width: 767px) {
  .c-form-submit-button {
    width: 180px;
  }
}
.c-form-submit-button:after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  width: 0;
  top: 0;
  height: 100%;
  position: absolute;
  background: #111;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-form-submit-button:before {
  font-family: "icomoon" !important;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 18px;
  font-size: 1.8rem;
}

.c-form-submit {
  display: table;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 55px;
  height: 55px;
  letter-spacing: 0.1em;
  width: 180px;
  padding: 0;
  text-align: center;
  z-index: 100;
  background: none;
  position: relative;
  border: 1px solid #111;
  z-index: 100;
}
@media (max-width: 767px) {
  .c-form-submit {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 55px;
    width: 180px;
    height: 55px;
  }
}

.c-form-table__input-check {
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}

.c-form-table__input-check:before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.375rem;
  content: "";
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  border: 2px solid #d81922;
  border-top-style: none;
  border-right-style: none;
}

.c-form-table__input-check:checked:before {
  transform: rotate(-45deg) scale(1, 1) translate(20%, -50%);
}

.c-form-table__input-check:after {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 20px;
  height: 20px;
  content: "";
  cursor: pointer;
  border: 1px solid #efefef;
  background: #ffffff;
}
@media (max-width: 767px) {
  .c-form-table__input-check:after {
    top: -2px;
  }
}

.c-form__msg {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
  padding: 0 0 50px;
  text-align: right;
  opacity: 0.2;
}
@media (max-width: 767px) {
  .c-form__msg {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    padding: 0 0 10px;
  }
}
.c-form__msg--end {
  text-align: center;
  font-weight: 600;
  opacity: 1;
}
.c-form__msg--confirm {
  text-align: center;
  font-weight: 600;
  opacity: 1;
  color: #111;
}
.c-form__msg--error {
  color: #d81922;
  text-align: center;
  font-weight: 600;
  opacity: 1;
}
@media (max-width: 767px) {
  .c-form__msg--error {
    text-align: left;
  }
}

.error {
  font-size: 100%;
  color: #d81922;
  text-align: center;
  display: inline-block !important;
}

.c-form-heading {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 0 50px;
  text-align: center;
  color: #d81922;
}
@media (max-width: 767px) {
  .c-form-heading {
    padding: 0 0 30px;
  }
}
.c-form-heading.is-form2 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #d81922;
}
@media (max-width: 767px) {
  .c-form-heading.is-form2 {
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

.c-form-table__text-color {
  color: #e31d1d;
}

.is-confirm .c-form-table__input-wrap,
.is-confirm .c-form-table__select-wrap {
  padding: 14px 0;
}
.is-confirm .c-form-table__body--2 {
  padding-top: 0px;
}

input[type="checkbox"]:focus {
  outline: 0;
}

.mwform-checkbox-field {
  display: inline-block;
}

.mwform-checkbox-field-text {
  margin-left: 5px;
}

/* ---------------------------------------------------------

Project

--------------------------------------------------------- */
.p-index {
  width: 100%;
  position: relative;
  z-index: 0;
  font-feature-settings: "palt";
}

.p-top-kv {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 1112;
  padding-bottom: 70px;
}

.p-top-kv__body {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-top-kv__images {
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 2.5s;
  padding: 120px 120px 40px;
}
.is-page-loaded .p-top-kv__images {
  opacity: 1;
}
@media (max-width: 1023px) {
  .p-top-kv__images {
    padding: 120px 60px 40px;
  }
}
@media (max-width: 767px) {
  .p-top-kv__images {
    padding: 100px 20px 40px;
  }
}

.p-top-kv__scroll {
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  z-index: 1;
  opacity: 0;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: 1.3s;
  position: relative;
  text-align: center;
}
.p-top-kv__scroll a {
  color: #111;
}
.is-page-loaded .p-top-kv__scroll {
  opacity: 1;
}
.is-header-bg-show .p-top-kv__scroll {
  opacity: 0;
}
.p-top-kv__scroll:before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: #111;
  animation: moveLineTopToBottom 2s infinite;
}

.p-top-section {
  position: relative;
  padding-top: 180px;
  background: #fff;
}
@media (max-width: 767px) {
  .p-top-section {
    padding-top: 100px;
  }
}
.p-top-section--intro {
  background: #c21920;
  padding-top: 150px;
  padding-bottom: 200px;
  z-index: 111;
}
@media (max-width: 767px) {
  .p-top-section--intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-top-section--ticket {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .p-top-section--ticket {
    padding-bottom: 60px;
  }
}
.p-top-section--dance {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .p-top-section--dance {
    padding-bottom: 80px;
  }
}
.p-top-section--news {
  padding: 160px 0;
  z-index: 11;
  background: #fafafa;
}
@media (max-width: 767px) {
  .p-top-section--news {
    padding: 80px 0;
  }
}
.p-top-section--access {
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .p-top-section--access {
    padding-bottom: 80px;
  }
}

.p-top-intro__copy {
  padding-left: 20%;
}
@media (max-width: 1023px) {
  .p-top-intro__copy {
    padding-left: 15%;
  }
}
@media (max-width: 1023px) {
  .p-top-intro__copy {
    padding: 0 30px;
    margin-bottom: 50px;
  }
}

.p-top-intro__copy_main {
  width: 75%;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .p-top-intro__copy_main {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .p-top-intro__copy_main {
    margin-bottom: 40px;
  }
}
.p-top-cast__inner {
  padding-bottom: 40%;
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-cast__inner p {
  font-size: 40px;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 26px; /* font-size: 4rem; */
  font-weight: 400;
  line-height: 1; /* background-color: #000000; */
  text-align: center;
  color: #fff;
  width: 100%; /* padding: 14% 0; */
}
.p-top-cast__loop_wrap {
  display: flex;
  width: 100vw;
  height: 300px;
  overflow: hidden;
}
.p-top-cast__inner ul {
  display: flex;
  width: 100%;
  z-index: 1;
  flex-wrap: wrap;
}
.p-top-cast__inner ul li {
  width: 20%;
}
.p-top-cast__inner ul li img {
  width: 100%;
}
.p-top-cast__inner ul li.tba {
  /* display: flex; */ /* align-items: center; */ /* justify-content: center; */ /* background-color: #eeeeee; */ /* border-left: solid 1px #ffffff; */
}
.p-top-cast__inner ul li.tba p {
}

.p-top-cast .tba {
  text-align: center;
  margin-top: 60px;
  font-weight: bold;
  font-size: 24px;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .p-top-cast__inner {
    padding: 0 30px;
  }
  .p-top-cast .tba {
    margin-top: 40px;
  }
  .p-top-cast__inner p {
    font-size: 26px;
    padding: 28% 0;
  }
  .p-top-cast__inner ul li {
    width: 50%;
  }
  .p-top-cast__inner ul li:nth-child(n + 3) {
    /* display: none; */
  }
}
@media (max-width: 767px) {
  .p-top-cast__loop_wrap {
    height: 200px;
  }
}
.p-top-cast__loop_wrap img {
  width: auto;
  height: 100%;
}
.p-top-cast__loop_wrap img:first-child {
  animation: loop 100s -50s linear infinite;
}
.p-top-cast__loop_wrap img:last-child {
  animation: loop2 100s linear infinite;
}
.p-top-cast__loop_wrap--2 img {
  width: auto;
  height: 100%;
}
.p-top-cast__loop_wrap--2 img:first-child {
  animation: loop3 100s -50s linear infinite;
}
.p-top-cast__loop_wrap--2 img:last-child {
  animation: loop4 100s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
.p-top-section__heading {
  margin-bottom: 60px;
}
.p-top-section__heading span {
  display: block;
}
.p-top-section__heading-en {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 70px;
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-top-section__heading-en {
    font-size: 60px;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
  }
  .p-top-section__heading {
    margin-bottom: 40px;
  }
}
.p-top-section__heading-en:first-letter {
  color: #c21920;
}
.p-top-section__heading-jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-top-ticket__item {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #111;
  display: flex;
  align-items: center;
}

.p-top-ticket__cat {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  flex-basis: 30%;
}
@media (max-width: 767px) {
  .p-top-ticket__cat {
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1;
  }
}

.p-top-ticket__box {
  flex-basis: 70%;
  text-align: right;
}

.p-top-ticket__price {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .p-top-ticket__price {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    margin-right: 15px;
  }
}

.p-top-dance__list {
  border-top: 1px solid #e6e6e6;
  position: relative;
}
.p-top-dance__list .l-col-sm-3 {
  border-right: 1px solid #e6e6e6;
  display: flex;
  border-bottom: 1px solid #e6e6e6;
}
.p-top-dance__list .l-col-sm-3:nth-child(4) {
  border-right: 1px solid #ffffff;
}
.p-top-dance__list .l-col-sm-3:nth-child(8) {
  border-right: 1px solid #ffffff;
}

.p-top-dance__list .l-col-sm-3:last-child {
  border-right: 1px solid #e6e6e6;
}
.p-top-dance__item {
  padding: 25% 10%;
  /* border-bottom: 1px solid #e6e6e6; */
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-top-dance__item {
    padding: 20% 15%;
  }
}
.p-top-dance__item .c-button-2 {
  display: table;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .p-top-dance__item .c-button-2 {
    margin: 20px auto 0;
  }
}

.p-top-dance__heading {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-dance__heading {
    margin-bottom: 20px;
  }
}
.p-top-dance__heading span {
  display: block;
}
.p-top-dance__heading-cat {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .p-top-dance__heading-cat {
    margin-bottom: 5px;
  }
}
.p-top-dance__heading-num {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-dance__heading-num {
    font-size: 35px;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
  }
}

.p-top-dance__name {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-top-dance__name {
    margin-top: 25px;
  }
}
.p-top-dance__images {
  padding: 0 20%;
}
.p-top-dance__name-sub {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 5px;
}
.p-top-dance__name-main {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-dance__name-main {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
  }
  .p-top-dance__images {
    padding: 0;
  }
}
.p-top-dance__name span {
  display: block;
}

.p-top-news {
  position: relative;
  z-index: 11;
}

.p-top-areamap__image {
}
.p-top-areamap__image p {
  margin-top: 35px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-top-timetable__imagearea {
  position: relative;
  z-index: 11;
  /* padding: 40px 40px; */
  /* background: #01b0b8; */
  height: 100%;
}
@media (max-width: 767px) {
  .p-top-areamap__image {
    /* padding-bottom: 50%; */
  }
  .p-top-areamap__image p {
    /* font-size: 20px; */
  }
}
@media (max-width: 767px) {
  .p-top-timetable__imagearea {
    /* padding: 20px 0px; */
  }
}
.access__modal__button {
  margin: unset;
  margin-top: 10px;
}
.access__modal__button a {
  padding: 0;
  border: unset;
  width: auto;
  display: inline-block;
  text-decoration: underline;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.access__modal__button a:hover {
  opacity: 0.5;
}
.modal__access {
}
.modal__access p {
  font-size: 14px;
}
.modal__access a {
  text-decoration: underline;
  font-size: 14px;
  color: #111;
}
.modal__access a:hover {
  opacity: 0.5;
}
.p-top-timetable__imagearea .p-top-timetable__date {
  display: table;
  margin: 0 auto 40px;
}
.p-top-timetable__imagearea--2 {
  background: #d1b730;
}
.p-top-timetable__imagearea--3 {
  background: #ce000b;
}
.p-top-access {
  position: relative;
  z-index: 11;
}

.p-top-access__map {
  position: relative;
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .p-top-access__map iframe {
    height: 300px;
  }
}

.p-top-access__place {
  margin-top: 35px;
}
.p-top-access__place p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-top-access__place p {
    margin-bottom: 30px;
  }
}

.p-top-access__notice {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .p-top-access__notice {
    margin-top: 10px;
  }
}

.p-top-access__notice-ttl {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 35px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-top-access__notice-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 20px;
  }
}

.p-cast-tag {
  margin-left: auto;
  display: table;
  margin-bottom: 60px;
  position: relative;
  z-index: 22;
}
@media (max-width: 767px) {
  .p-cast-tag {
    margin-left: -10px;
  }
}

.p-cast-tag__list {
  display: flex;
  flex-wrap: wrap;
}
.p-cast-tag__list li {
  margin-bottom: 20px;
}
.p-cast-tag__item a {
  display: block;
  color: #cfcfcf;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0 10px;
  position: relative;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.p-cast-tag__item a:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #cfcfcf;
  top: 0;
  right: 0;
  transform: rotate(30deg);
}
.p-cast-tag__item a:hover {
  color: #111;
}
.p-cast-tag__item:last-child a:after {
  content: none;
}

.p-cast-list__heading {
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
}

.p-cast-list__box {
  position: relative;
  z-index: 11;
  padding-top: 120px;
  margin-top: -120px;
  margin-bottom: 50px;
}

.p-cast-list__item {
  margin-bottom: 70px;
  position: relative;
  z-index: 11;
}
@media (max-width: 767px) {
  .p-cast-list__item {
    margin-bottom: 40px;
  }
}

.p-cast-lisr__name {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .p-cast-lisr__name {
    margin-top: 20px;
  }
}

.p-news__body {
  position: relative;
  z-index: 1111;
}

.p-news-detail__body {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  margin-left: 0px;
  margin-right: 0px;
  position: relative;
  padding-top: 80px;
  position: relative;
  z-index: 1111;
  border-top: 1px solid #e6e6e6;
}
@media (max-width: 767px) {
  .p-news-detail__body {
    display: block;
    padding-top: 50px;
  }
}

.p-news-detail__main {
  flex: 0 0 auto;
  flex-basis: 67%;
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 100%;
  padding-right: 100px;
  padding-bottom: 140px;
}
@media (max-width: 767px) {
  .p-news-detail__main {
    padding-right: 0px;
    padding-bottom: 40px;
  }
}
.p-news-detail__main:after {
  position: absolute;
  top: 0;
  right: 50px;
  width: 1px;
  height: 100%;
  content: "";
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .p-news-detail__main:after {
    width: 100%;
    height: 1px;
    right: 0;
    top: 100%;
  }
}

.p-news-detail__contents {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}
.p-news-detail__contents a {
  color: #111;
  text-decoration: underline;
}

.p-news-detail__contents-image {
  width: 80%;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .p-news-detail__contents-image {
    margin-bottom: 40px;
  }
}
.p-news-detail__contents-image img {
  margin: 0 auto;
  display: table;
}

.p-news-detail__latest {
  flex: 0 0 auto;
  flex-basis: 33%;
  position: relative;
}
@media (max-width: 767px) {
  .p-news-detail__latest {
    padding: 40px 0 60px;
  }
}

.p-news-detail__latest-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-news-detail__latest-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.p-news-detail__latest-item:hover {
  opacity: 0.5;
}
.p-news-detail__latest-item:last-child {
  border-bottom: none;
}

.p-contact__body {
  padding-top: 80px;
  padding-bottom: 140px;
  border-top: 1px solid #e6e6e6;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-contact__body {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.p-contact__inner {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-contact__inner {
    max-width: 100%;
    width: 100%;
  }
}

/* ---------------------------------------------------------


Utility

--------------------------------------------------------- */
/******************************************************************************
* FONT
*******************************************************************************/
.u-fz-10 {
  font-size: 10px !important;
}

.u-fz-11 {
  font-size: 11px !important;
}

.u-fz-12 {
  font-size: 12px !important;
}

.u-fz-13 {
  font-size: 13px !important;
}

.u-fz-14 {
  font-size: 14px !important;
}

.u-fz-15 {
  font-size: 15px !important;
}

.u-fz-16 {
  font-size: 16px !important;
}

.u-fz-17 {
  font-size: 17px !important;
}

.u-fz-18 {
  font-size: 18px !important;
}

.u-fz-19 {
  font-size: 19px !important;
}

.u-fz-20 {
  font-size: 20px !important;
}

.u-fw-nm {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-br {
  font-weight: bolder !important;
}

.u-fw-l {
  font-weight: 200 !important;
}

.u-fw-lr {
  font-weight: lighter !important;
}

.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fs-nm {
  font-style: normal !important;
}

.u-fs-i {
  font-style: italic !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-ff-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

/******************************************************************************
* MARGIN
*******************************************************************************/
.u-m-a {
  margin: auto !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-m-0_a {
  margin: 0 auto !important;
}

.u-m-xs {
  margin: 1rem !important;
}

.u-m-sm {
  margin: 2rem !important;
}

.u-m-md {
  margin: 3rem !important;
}

.u-m-lg {
  margin: 4rem !important;
}

.u-m-xl {
  margin: 6rem !important;
}

.u-m-xxl {
  margin: 8rem !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 1rem !important;
}

.u-mt-sm {
  margin-top: 2rem !important;
}

.u-mt-md {
  margin-top: 3rem !important;
}

.u-mt-lg {
  margin-top: 4rem !important;
}

.u-mt-xl {
  margin-top: 6rem !important;
}

.u-mt-xxl {
  margin-top: 8rem !important;
}

.u-mr-a {
  margin-right: auto !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-xs {
  margin-right: 1rem !important;
}

.u-mr-sm {
  margin-right: 2rem !important;
}

.u-mr-md {
  margin-right: 3rem !important;
}

.u-mr-lg {
  margin-right: 4rem !important;
}

.u-mr-xl {
  margin-right: 6rem !important;
}

.u-mr-xxl {
  margin-right: 8rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 1rem !important;
}

.u-mb-sm {
  margin-bottom: 2rem !important;
}

.u-mb-md {
  margin-bottom: 3rem !important;
}

.u-mb-lg {
  margin-bottom: 4rem !important;
}

.u-mb-xl {
  margin-bottom: 6rem !important;
}

.u-mb-xxl {
  margin-bottom: 8rem !important;
}

.u-ml-a {
  margin-left: auto !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-xs {
  margin-left: 1rem !important;
}

.u-ml-sm {
  margin-left: 2rem !important;
}

.u-ml-md {
  margin-left: 3rem !important;
}

.u-ml-lg {
  margin-left: 4rem !important;
}

.u-ml-xl {
  margin-left: 6rem !important;
}

.u-ml-xxl {
  margin-left: 8rem !important;
}

.u-mlr-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .u-m-xs {
    margin: 0.5rem !important;
  }

  .u-m-sm {
    margin: 1rem !important;
  }

  .u-m-md {
    margin: 2rem !important;
  }

  .u-m-lg {
    margin: 3rem !important;
  }

  .u-m-xl {
    margin: 4rem !important;
  }

  .u-m-xxl {
    margin: 5rem !important;
  }

  .u-mt-xs {
    margin-top: 0.5rem !important;
  }

  .u-mt-sm {
    margin-top: 1rem !important;
  }

  .u-mt-md {
    margin-top: 2rem !important;
  }

  .u-mt-lg {
    margin-top: 3rem !important;
  }

  .u-mt-xl {
    margin-top: 4rem !important;
  }

  .u-mt-xxl {
    margin-top: 5rem !important;
  }

  .u-mr-xs {
    margin-right: 0.5rem !important;
  }

  .u-mr-sm {
    margin-right: 1rem !important;
  }

  .u-mr-md {
    margin-right: 2rem !important;
  }

  .u-mr-lg {
    margin-right: 3rem !important;
  }

  .u-mr-xl {
    margin-right: 4rem !important;
  }

  .u-mr-xxl {
    margin-right: 5rem !important;
  }

  .u-mb-xs {
    margin-bottom: 0.5rem !important;
  }

  .u-mb-sm {
    margin-bottom: 1rem !important;
  }

  .u-mb-md {
    margin-bottom: 2rem !important;
  }

  .u-mb-lg {
    margin-bottom: 3rem !important;
  }

  .u-mb-xl {
    margin-bottom: 4rem !important;
  }

  .u-mb-xxl {
    margin-bottom: 5rem !important;
  }

  .u-ml-xs {
    margin-left: 0.5rem !important;
  }

  .u-ml-sm {
    margin-left: 1rem !important;
  }

  .u-ml-md {
    margin-left: 2rem !important;
  }

  .u-ml-lg {
    margin-left: 3rem !important;
  }

  .u-ml-xl {
    margin-left: 4rem !important;
  }

  .u-ml-xxl {
    margin-left: 5rem !important;
  }
}
.u-m-0 {
  margin: 0px !important;
}

.u-m-5 {
  margin: 5px !important;
}

.u-m-10 {
  margin: 10px !important;
}

.u-m-15 {
  margin: 15px !important;
}

.u-m-20 {
  margin: 20px !important;
}

.u-m-25 {
  margin: 25px !important;
}

.u-m-30 {
  margin: 30px !important;
}

.u-m-35 {
  margin: 35px !important;
}

.u-m-40 {
  margin: 40px !important;
}

.u-m-45 {
  margin: 45px !important;
}

.u-m-50 {
  margin: 50px !important;
}

.u-m-55 {
  margin: 55px !important;
}

.u-m-60 {
  margin: 60px !important;
}

.u-m-65 {
  margin: 65px !important;
}

.u-m-70 {
  margin: 70px !important;
}

.u-m-75 {
  margin: 75px !important;
}

.u-m-80 {
  margin: 80px !important;
}

.u-m-85 {
  margin: 85px !important;
}

.u-m-90 {
  margin: 90px !important;
}

.u-m-95 {
  margin: 95px !important;
}

.u-m-100 {
  margin: 100px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

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

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

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

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

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-ml-0 {
  margin-left: 0px !important;
}

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

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

.u-ml-15 {
  margin-left: 15px !important;
}

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

.u-ml-25 {
  margin-left: 25px !important;
}

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

.u-ml-35 {
  margin-left: 35px !important;
}

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

.u-ml-45 {
  margin-left: 45px !important;
}

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

.u-ml-55 {
  margin-left: 55px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-ml-65 {
  margin-left: 65px !important;
}

.u-ml-70 {
  margin-left: 70px !important;
}

.u-ml-75 {
  margin-left: 75px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-ml-85 {
  margin-left: 85px !important;
}

.u-ml-90 {
  margin-left: 90px !important;
}

.u-ml-95 {
  margin-left: 95px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

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

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

.u-mr-15 {
  margin-right: 15px !important;
}

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

.u-mr-25 {
  margin-right: 25px !important;
}

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

.u-mr-35 {
  margin-right: 35px !important;
}

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

.u-mr-45 {
  margin-right: 45px !important;
}

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

.u-mr-55 {
  margin-right: 55px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-mr-65 {
  margin-right: 65px !important;
}

.u-mr-70 {
  margin-right: 70px !important;
}

.u-mr-75 {
  margin-right: 75px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-mr-85 {
  margin-right: 85px !important;
}

.u-mr-90 {
  margin-right: 90px !important;
}

.u-mr-95 {
  margin-right: 95px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

.u-xs-m-0 {
  margin: 0px;
}

.u-xs-m-5 {
  margin: 5px;
}

.u-xs-m-10 {
  margin: 10px;
}

.u-xs-m-15 {
  margin: 15px;
}

.u-xs-m-20 {
  margin: 20px;
}

.u-xs-m-25 {
  margin: 25px;
}

.u-xs-m-30 {
  margin: 30px;
}

.u-xs-m-35 {
  margin: 35px;
}

.u-xs-m-40 {
  margin: 40px;
}

.u-xs-m-45 {
  margin: 45px;
}

.u-xs-m-50 {
  margin: 50px;
}

.u-xs-m-55 {
  margin: 55px;
}

.u-xs-m-60 {
  margin: 60px;
}

.u-xs-m-65 {
  margin: 65px;
}

.u-xs-m-70 {
  margin: 70px;
}

.u-xs-m-75 {
  margin: 75px;
}

.u-xs-m-80 {
  margin: 80px;
}

.u-xs-m-85 {
  margin: 85px;
}

.u-xs-m-90 {
  margin: 90px;
}

.u-xs-m-95 {
  margin: 95px;
}

.u-xs-m-100 {
  margin: 100px;
}

.u-xs-mt-0 {
  margin-top: 0px;
}

.u-xs-mt-5 {
  margin-top: 5px;
}

.u-xs-mt-10 {
  margin-top: 10px;
}

.u-xs-mt-15 {
  margin-top: 15px;
}

.u-xs-mt-20 {
  margin-top: 20px;
}

.u-xs-mt-25 {
  margin-top: 25px;
}

.u-xs-mt-30 {
  margin-top: 30px;
}

.u-xs-mt-35 {
  margin-top: 35px;
}

.u-xs-mt-40 {
  margin-top: 40px;
}

.u-xs-mt-45 {
  margin-top: 45px;
}

.u-xs-mt-50 {
  margin-top: 50px;
}

.u-xs-mt-55 {
  margin-top: 55px;
}

.u-xs-mt-60 {
  margin-top: 60px;
}

.u-xs-mt-65 {
  margin-top: 65px;
}

.u-xs-mt-70 {
  margin-top: 70px;
}

.u-xs-mt-75 {
  margin-top: 75px;
}

.u-xs-mt-80 {
  margin-top: 80px;
}

.u-xs-mt-85 {
  margin-top: 85px;
}

.u-xs-mt-90 {
  margin-top: 90px;
}

.u-xs-mt-95 {
  margin-top: 95px;
}

.u-xs-mt-100 {
  margin-top: 100px;
}

.u-xs-mb-0 {
  margin-bottom: 0px;
}

.u-xs-mb-5 {
  margin-bottom: 5px;
}

.u-xs-mb-10 {
  margin-bottom: 10px;
}

.u-xs-mb-15 {
  margin-bottom: 15px;
}

.u-xs-mb-20 {
  margin-bottom: 20px;
}

.u-xs-mb-25 {
  margin-bottom: 25px;
}

.u-xs-mb-30 {
  margin-bottom: 30px;
}

.u-xs-mb-35 {
  margin-bottom: 35px;
}

.u-xs-mb-40 {
  margin-bottom: 40px;
}

.u-xs-mb-45 {
  margin-bottom: 45px;
}

.u-xs-mb-50 {
  margin-bottom: 50px;
}

.u-xs-mb-55 {
  margin-bottom: 55px;
}

.u-xs-mb-60 {
  margin-bottom: 60px;
}

.u-xs-mb-65 {
  margin-bottom: 65px;
}

.u-xs-mb-70 {
  margin-bottom: 70px;
}

.u-xs-mb-75 {
  margin-bottom: 75px;
}

.u-xs-mb-80 {
  margin-bottom: 80px;
}

.u-xs-mb-85 {
  margin-bottom: 85px;
}

.u-xs-mb-90 {
  margin-bottom: 90px;
}

.u-xs-mb-95 {
  margin-bottom: 95px;
}

.u-xs-mb-100 {
  margin-bottom: 100px;
}

.u-xs-ml-0 {
  margin-left: 0px;
}

.u-xs-ml-5 {
  margin-left: 5px;
}

.u-xs-ml-10 {
  margin-left: 10px;
}

.u-xs-ml-15 {
  margin-left: 15px;
}

.u-xs-ml-20 {
  margin-left: 20px;
}

.u-xs-ml-25 {
  margin-left: 25px;
}

.u-xs-ml-30 {
  margin-left: 30px;
}

.u-xs-ml-35 {
  margin-left: 35px;
}

.u-xs-ml-40 {
  margin-left: 40px;
}

.u-xs-ml-45 {
  margin-left: 45px;
}

.u-xs-ml-50 {
  margin-left: 50px;
}

.u-xs-ml-55 {
  margin-left: 55px;
}

.u-xs-ml-60 {
  margin-left: 60px;
}

.u-xs-ml-65 {
  margin-left: 65px;
}

.u-xs-ml-70 {
  margin-left: 70px;
}

.u-xs-ml-75 {
  margin-left: 75px;
}

.u-xs-ml-80 {
  margin-left: 80px;
}

.u-xs-ml-85 {
  margin-left: 85px;
}

.u-xs-ml-90 {
  margin-left: 90px;
}

.u-xs-ml-95 {
  margin-left: 95px;
}

.u-xs-ml-100 {
  margin-left: 100px;
}

.u-xs-mr-0 {
  margin-right: 0px;
}

.u-xs-mr-5 {
  margin-right: 5px;
}

.u-xs-mr-10 {
  margin-right: 10px;
}

.u-xs-mr-15 {
  margin-right: 15px;
}

.u-xs-mr-20 {
  margin-right: 20px;
}

.u-xs-mr-25 {
  margin-right: 25px;
}

.u-xs-mr-30 {
  margin-right: 30px;
}

.u-xs-mr-35 {
  margin-right: 35px;
}

.u-xs-mr-40 {
  margin-right: 40px;
}

.u-xs-mr-45 {
  margin-right: 45px;
}

.u-xs-mr-50 {
  margin-right: 50px;
}

.u-xs-mr-55 {
  margin-right: 55px;
}

.u-xs-mr-60 {
  margin-right: 60px;
}

.u-xs-mr-65 {
  margin-right: 65px;
}

.u-xs-mr-70 {
  margin-right: 70px;
}

.u-xs-mr-75 {
  margin-right: 75px;
}

.u-xs-mr-80 {
  margin-right: 80px;
}

.u-xs-mr-85 {
  margin-right: 85px;
}

.u-xs-mr-90 {
  margin-right: 90px;
}

.u-xs-mr-95 {
  margin-right: 95px;
}

.u-xs-mr-100 {
  margin-right: 100px;
}

@media (min-width: 768px) {
  .u-sm-m-0 {
    margin: 0px;
  }

  .u-sm-m-5 {
    margin: 5px;
  }

  .u-sm-m-10 {
    margin: 10px;
  }

  .u-sm-m-15 {
    margin: 15px;
  }

  .u-sm-m-20 {
    margin: 20px;
  }

  .u-sm-m-25 {
    margin: 25px;
  }

  .u-sm-m-30 {
    margin: 30px;
  }

  .u-sm-m-35 {
    margin: 35px;
  }

  .u-sm-m-40 {
    margin: 40px;
  }

  .u-sm-m-45 {
    margin: 45px;
  }

  .u-sm-m-50 {
    margin: 50px;
  }

  .u-sm-m-55 {
    margin: 55px;
  }

  .u-sm-m-60 {
    margin: 60px;
  }

  .u-sm-m-65 {
    margin: 65px;
  }

  .u-sm-m-70 {
    margin: 70px;
  }

  .u-sm-m-75 {
    margin: 75px;
  }

  .u-sm-m-80 {
    margin: 80px;
  }

  .u-sm-m-85 {
    margin: 85px;
  }

  .u-sm-m-90 {
    margin: 90px;
  }

  .u-sm-m-95 {
    margin: 95px;
  }

  .u-sm-m-100 {
    margin: 100px;
  }

  .u-sm-mt-0 {
    margin-top: 0px;
  }

  .u-sm-mt-5 {
    margin-top: 5px;
  }

  .u-sm-mt-10 {
    margin-top: 10px;
  }

  .u-sm-mt-15 {
    margin-top: 15px;
  }

  .u-sm-mt-20 {
    margin-top: 20px;
  }

  .u-sm-mt-25 {
    margin-top: 25px;
  }

  .u-sm-mt-30 {
    margin-top: 30px;
  }

  .u-sm-mt-35 {
    margin-top: 35px;
  }

  .u-sm-mt-40 {
    margin-top: 40px;
  }

  .u-sm-mt-45 {
    margin-top: 45px;
  }

  .u-sm-mt-50 {
    margin-top: 50px;
  }

  .u-sm-mt-55 {
    margin-top: 55px;
  }

  .u-sm-mt-60 {
    margin-top: 60px;
  }

  .u-sm-mt-65 {
    margin-top: 65px;
  }

  .u-sm-mt-70 {
    margin-top: 70px;
  }

  .u-sm-mt-75 {
    margin-top: 75px;
  }

  .u-sm-mt-80 {
    margin-top: 80px;
  }

  .u-sm-mt-85 {
    margin-top: 85px;
  }

  .u-sm-mt-90 {
    margin-top: 90px;
  }

  .u-sm-mt-95 {
    margin-top: 95px;
  }

  .u-sm-mt-100 {
    margin-top: 100px;
  }

  .u-sm-mb-0 {
    margin-bottom: 0px;
  }

  .u-sm-mb-5 {
    margin-bottom: 5px;
  }

  .u-sm-mb-10 {
    margin-bottom: 10px;
  }

  .u-sm-mb-15 {
    margin-bottom: 15px;
  }

  .u-sm-mb-20 {
    margin-bottom: 20px;
  }

  .u-sm-mb-25 {
    margin-bottom: 25px;
  }

  .u-sm-mb-30 {
    margin-bottom: 30px;
  }

  .u-sm-mb-35 {
    margin-bottom: 35px;
  }

  .u-sm-mb-40 {
    margin-bottom: 40px;
  }

  .u-sm-mb-45 {
    margin-bottom: 45px;
  }

  .u-sm-mb-50 {
    margin-bottom: 50px;
  }

  .u-sm-mb-55 {
    margin-bottom: 55px;
  }

  .u-sm-mb-60 {
    margin-bottom: 60px;
  }

  .u-sm-mb-65 {
    margin-bottom: 65px;
  }

  .u-sm-mb-70 {
    margin-bottom: 70px;
  }

  .u-sm-mb-75 {
    margin-bottom: 75px;
  }

  .u-sm-mb-80 {
    margin-bottom: 80px;
  }

  .u-sm-mb-85 {
    margin-bottom: 85px;
  }

  .u-sm-mb-90 {
    margin-bottom: 90px;
  }

  .u-sm-mb-95 {
    margin-bottom: 95px;
  }

  .u-sm-mb-100 {
    margin-bottom: 100px;
  }

  .u-sm-ml-0 {
    margin-left: 0px;
  }

  .u-sm-ml-5 {
    margin-left: 5px;
  }

  .u-sm-ml-10 {
    margin-left: 10px;
  }

  .u-sm-ml-15 {
    margin-left: 15px;
  }

  .u-sm-ml-20 {
    margin-left: 20px;
  }

  .u-sm-ml-25 {
    margin-left: 25px;
  }

  .u-sm-ml-30 {
    margin-left: 30px;
  }

  .u-sm-ml-35 {
    margin-left: 35px;
  }

  .u-sm-ml-40 {
    margin-left: 40px;
  }

  .u-sm-ml-45 {
    margin-left: 45px;
  }

  .u-sm-ml-50 {
    margin-left: 50px;
  }

  .u-sm-ml-55 {
    margin-left: 55px;
  }

  .u-sm-ml-60 {
    margin-left: 60px;
  }

  .u-sm-ml-65 {
    margin-left: 65px;
  }

  .u-sm-ml-70 {
    margin-left: 70px;
  }

  .u-sm-ml-75 {
    margin-left: 75px;
  }

  .u-sm-ml-80 {
    margin-left: 80px;
  }

  .u-sm-ml-85 {
    margin-left: 85px;
  }

  .u-sm-ml-90 {
    margin-left: 90px;
  }

  .u-sm-ml-95 {
    margin-left: 95px;
  }

  .u-sm-ml-100 {
    margin-left: 100px;
  }

  .u-sm-mr-0 {
    margin-right: 0px;
  }

  .u-sm-mr-5 {
    margin-right: 5px;
  }

  .u-sm-mr-10 {
    margin-right: 10px;
  }

  .u-sm-mr-15 {
    margin-right: 15px;
  }

  .u-sm-mr-20 {
    margin-right: 20px;
  }

  .u-sm-mr-25 {
    margin-right: 25px;
  }

  .u-sm-mr-30 {
    margin-right: 30px;
  }

  .u-sm-mr-35 {
    margin-right: 35px;
  }

  .u-sm-mr-40 {
    margin-right: 40px;
  }

  .u-sm-mr-45 {
    margin-right: 45px;
  }

  .u-sm-mr-50 {
    margin-right: 50px;
  }

  .u-sm-mr-55 {
    margin-right: 55px;
  }

  .u-sm-mr-60 {
    margin-right: 60px;
  }

  .u-sm-mr-65 {
    margin-right: 65px;
  }

  .u-sm-mr-70 {
    margin-right: 70px;
  }

  .u-sm-mr-75 {
    margin-right: 75px;
  }

  .u-sm-mr-80 {
    margin-right: 80px;
  }

  .u-sm-mr-85 {
    margin-right: 85px;
  }

  .u-sm-mr-90 {
    margin-right: 90px;
  }

  .u-sm-mr-95 {
    margin-right: 95px;
  }

  .u-sm-mr-100 {
    margin-right: 100px;
  }
}
@media (min-width: 1024px) {
  .u-md-m-0 {
    margin: 0px;
  }

  .u-md-m-5 {
    margin: 5px;
  }

  .u-md-m-10 {
    margin: 10px;
  }

  .u-md-m-15 {
    margin: 15px;
  }

  .u-md-m-20 {
    margin: 20px;
  }

  .u-md-m-25 {
    margin: 25px;
  }

  .u-md-m-30 {
    margin: 30px;
  }

  .u-md-m-35 {
    margin: 35px;
  }

  .u-md-m-40 {
    margin: 40px;
  }

  .u-md-m-45 {
    margin: 45px;
  }

  .u-md-m-50 {
    margin: 50px;
  }

  .u-md-m-55 {
    margin: 55px;
  }

  .u-md-m-60 {
    margin: 60px;
  }

  .u-md-m-65 {
    margin: 65px;
  }

  .u-md-m-70 {
    margin: 70px;
  }

  .u-md-m-75 {
    margin: 75px;
  }

  .u-md-m-80 {
    margin: 80px;
  }

  .u-md-m-85 {
    margin: 85px;
  }

  .u-md-m-90 {
    margin: 90px;
  }

  .u-md-m-95 {
    margin: 95px;
  }

  .u-md-m-100 {
    margin: 100px;
  }

  .u-md-mt-0 {
    margin-top: 0px;
  }

  .u-md-mt-5 {
    margin-top: 5px;
  }

  .u-md-mt-10 {
    margin-top: 10px;
  }

  .u-md-mt-15 {
    margin-top: 15px;
  }

  .u-md-mt-20 {
    margin-top: 20px;
  }

  .u-md-mt-25 {
    margin-top: 25px;
  }

  .u-md-mt-30 {
    margin-top: 30px;
  }

  .u-md-mt-35 {
    margin-top: 35px;
  }

  .u-md-mt-40 {
    margin-top: 40px;
  }

  .u-md-mt-45 {
    margin-top: 45px;
  }

  .u-md-mt-50 {
    margin-top: 50px;
  }

  .u-md-mt-55 {
    margin-top: 55px;
  }

  .u-md-mt-60 {
    margin-top: 60px;
  }

  .u-md-mt-65 {
    margin-top: 65px;
  }

  .u-md-mt-70 {
    margin-top: 70px;
  }

  .u-md-mt-75 {
    margin-top: 75px;
  }

  .u-md-mt-80 {
    margin-top: 80px;
  }

  .u-md-mt-85 {
    margin-top: 85px;
  }

  .u-md-mt-90 {
    margin-top: 90px;
  }

  .u-md-mt-95 {
    margin-top: 95px;
  }

  .u-md-mt-100 {
    margin-top: 100px;
  }

  .u-md-mb-0 {
    margin-bottom: 0px;
  }

  .u-md-mb-5 {
    margin-bottom: 5px;
  }

  .u-md-mb-10 {
    margin-bottom: 10px;
  }

  .u-md-mb-15 {
    margin-bottom: 15px;
  }

  .u-md-mb-20 {
    margin-bottom: 20px;
  }

  .u-md-mb-25 {
    margin-bottom: 25px;
  }

  .u-md-mb-30 {
    margin-bottom: 30px;
  }

  .u-md-mb-35 {
    margin-bottom: 35px;
  }

  .u-md-mb-40 {
    margin-bottom: 40px;
  }

  .u-md-mb-45 {
    margin-bottom: 45px;
  }

  .u-md-mb-50 {
    margin-bottom: 50px;
  }

  .u-md-mb-55 {
    margin-bottom: 55px;
  }

  .u-md-mb-60 {
    margin-bottom: 60px;
  }

  .u-md-mb-65 {
    margin-bottom: 65px;
  }

  .u-md-mb-70 {
    margin-bottom: 70px;
  }

  .u-md-mb-75 {
    margin-bottom: 75px;
  }

  .u-md-mb-80 {
    margin-bottom: 80px;
  }

  .u-md-mb-85 {
    margin-bottom: 85px;
  }

  .u-md-mb-90 {
    margin-bottom: 90px;
  }

  .u-md-mb-95 {
    margin-bottom: 95px;
  }

  .u-md-mb-100 {
    margin-bottom: 100px;
  }

  .u-md-ml-0 {
    margin-left: 0px;
  }

  .u-md-ml-5 {
    margin-left: 5px;
  }

  .u-md-ml-10 {
    margin-left: 10px;
  }

  .u-md-ml-15 {
    margin-left: 15px;
  }

  .u-md-ml-20 {
    margin-left: 20px;
  }

  .u-md-ml-25 {
    margin-left: 25px;
  }

  .u-md-ml-30 {
    margin-left: 30px;
  }

  .u-md-ml-35 {
    margin-left: 35px;
  }

  .u-md-ml-40 {
    margin-left: 40px;
  }

  .u-md-ml-45 {
    margin-left: 45px;
  }

  .u-md-ml-50 {
    margin-left: 50px;
  }

  .u-md-ml-55 {
    margin-left: 55px;
  }

  .u-md-ml-60 {
    margin-left: 60px;
  }

  .u-md-ml-65 {
    margin-left: 65px;
  }

  .u-md-ml-70 {
    margin-left: 70px;
  }

  .u-md-ml-75 {
    margin-left: 75px;
  }

  .u-md-ml-80 {
    margin-left: 80px;
  }

  .u-md-ml-85 {
    margin-left: 85px;
  }

  .u-md-ml-90 {
    margin-left: 90px;
  }

  .u-md-ml-95 {
    margin-left: 95px;
  }

  .u-md-ml-100 {
    margin-left: 100px;
  }

  .u-md-mr-0 {
    margin-right: 0px;
  }

  .u-md-mr-5 {
    margin-right: 5px;
  }

  .u-md-mr-10 {
    margin-right: 10px;
  }

  .u-md-mr-15 {
    margin-right: 15px;
  }

  .u-md-mr-20 {
    margin-right: 20px;
  }

  .u-md-mr-25 {
    margin-right: 25px;
  }

  .u-md-mr-30 {
    margin-right: 30px;
  }

  .u-md-mr-35 {
    margin-right: 35px;
  }

  .u-md-mr-40 {
    margin-right: 40px;
  }

  .u-md-mr-45 {
    margin-right: 45px;
  }

  .u-md-mr-50 {
    margin-right: 50px;
  }

  .u-md-mr-55 {
    margin-right: 55px;
  }

  .u-md-mr-60 {
    margin-right: 60px;
  }

  .u-md-mr-65 {
    margin-right: 65px;
  }

  .u-md-mr-70 {
    margin-right: 70px;
  }

  .u-md-mr-75 {
    margin-right: 75px;
  }

  .u-md-mr-80 {
    margin-right: 80px;
  }

  .u-md-mr-85 {
    margin-right: 85px;
  }

  .u-md-mr-90 {
    margin-right: 90px;
  }

  .u-md-mr-95 {
    margin-right: 95px;
  }

  .u-md-mr-100 {
    margin-right: 100px;
  }
}
@media (min-width: 1281px) {
  .u-lg-m-0 {
    margin: 0px;
  }

  .u-lg-m-5 {
    margin: 5px;
  }

  .u-lg-m-10 {
    margin: 10px;
  }

  .u-lg-m-15 {
    margin: 15px;
  }

  .u-lg-m-20 {
    margin: 20px;
  }

  .u-lg-m-25 {
    margin: 25px;
  }

  .u-lg-m-30 {
    margin: 30px;
  }

  .u-lg-m-35 {
    margin: 35px;
  }

  .u-lg-m-40 {
    margin: 40px;
  }

  .u-lg-m-45 {
    margin: 45px;
  }

  .u-lg-m-50 {
    margin: 50px;
  }

  .u-lg-m-55 {
    margin: 55px;
  }

  .u-lg-m-60 {
    margin: 60px;
  }

  .u-lg-m-65 {
    margin: 65px;
  }

  .u-lg-m-70 {
    margin: 70px;
  }

  .u-lg-m-75 {
    margin: 75px;
  }

  .u-lg-m-80 {
    margin: 80px;
  }

  .u-lg-m-85 {
    margin: 85px;
  }

  .u-lg-m-90 {
    margin: 90px;
  }

  .u-lg-m-95 {
    margin: 95px;
  }

  .u-lg-m-100 {
    margin: 100px;
  }

  .u-lg-mt-0 {
    margin-top: 0px;
  }

  .u-lg-mt-5 {
    margin-top: 5px;
  }

  .u-lg-mt-10 {
    margin-top: 10px;
  }

  .u-lg-mt-15 {
    margin-top: 15px;
  }

  .u-lg-mt-20 {
    margin-top: 20px;
  }

  .u-lg-mt-25 {
    margin-top: 25px;
  }

  .u-lg-mt-30 {
    margin-top: 30px;
  }

  .u-lg-mt-35 {
    margin-top: 35px;
  }

  .u-lg-mt-40 {
    margin-top: 40px;
  }

  .u-lg-mt-45 {
    margin-top: 45px;
  }

  .u-lg-mt-50 {
    margin-top: 50px;
  }

  .u-lg-mt-55 {
    margin-top: 55px;
  }

  .u-lg-mt-60 {
    margin-top: 60px;
  }

  .u-lg-mt-65 {
    margin-top: 65px;
  }

  .u-lg-mt-70 {
    margin-top: 70px;
  }

  .u-lg-mt-75 {
    margin-top: 75px;
  }

  .u-lg-mt-80 {
    margin-top: 80px;
  }

  .u-lg-mt-85 {
    margin-top: 85px;
  }

  .u-lg-mt-90 {
    margin-top: 90px;
  }

  .u-lg-mt-95 {
    margin-top: 95px;
  }

  .u-lg-mt-100 {
    margin-top: 100px;
  }

  .u-lg-mb-0 {
    margin-bottom: 0px;
  }

  .u-lg-mb-5 {
    margin-bottom: 5px;
  }

  .u-lg-mb-10 {
    margin-bottom: 10px;
  }

  .u-lg-mb-15 {
    margin-bottom: 15px;
  }

  .u-lg-mb-20 {
    margin-bottom: 20px;
  }

  .u-lg-mb-25 {
    margin-bottom: 25px;
  }

  .u-lg-mb-30 {
    margin-bottom: 30px;
  }

  .u-lg-mb-35 {
    margin-bottom: 35px;
  }

  .u-lg-mb-40 {
    margin-bottom: 40px;
  }

  .u-lg-mb-45 {
    margin-bottom: 45px;
  }

  .u-lg-mb-50 {
    margin-bottom: 50px;
  }

  .u-lg-mb-55 {
    margin-bottom: 55px;
  }

  .u-lg-mb-60 {
    margin-bottom: 60px;
  }

  .u-lg-mb-65 {
    margin-bottom: 65px;
  }

  .u-lg-mb-70 {
    margin-bottom: 70px;
  }

  .u-lg-mb-75 {
    margin-bottom: 75px;
  }

  .u-lg-mb-80 {
    margin-bottom: 80px;
  }

  .u-lg-mb-85 {
    margin-bottom: 85px;
  }

  .u-lg-mb-90 {
    margin-bottom: 90px;
  }

  .u-lg-mb-95 {
    margin-bottom: 95px;
  }

  .u-lg-mb-100 {
    margin-bottom: 100px;
  }

  .u-lg-ml-0 {
    margin-left: 0px;
  }

  .u-lg-ml-5 {
    margin-left: 5px;
  }

  .u-lg-ml-10 {
    margin-left: 10px;
  }

  .u-lg-ml-15 {
    margin-left: 15px;
  }

  .u-lg-ml-20 {
    margin-left: 20px;
  }

  .u-lg-ml-25 {
    margin-left: 25px;
  }

  .u-lg-ml-30 {
    margin-left: 30px;
  }

  .u-lg-ml-35 {
    margin-left: 35px;
  }

  .u-lg-ml-40 {
    margin-left: 40px;
  }

  .u-lg-ml-45 {
    margin-left: 45px;
  }

  .u-lg-ml-50 {
    margin-left: 50px;
  }

  .u-lg-ml-55 {
    margin-left: 55px;
  }

  .u-lg-ml-60 {
    margin-left: 60px;
  }

  .u-lg-ml-65 {
    margin-left: 65px;
  }

  .u-lg-ml-70 {
    margin-left: 70px;
  }

  .u-lg-ml-75 {
    margin-left: 75px;
  }

  .u-lg-ml-80 {
    margin-left: 80px;
  }

  .u-lg-ml-85 {
    margin-left: 85px;
  }

  .u-lg-ml-90 {
    margin-left: 90px;
  }

  .u-lg-ml-95 {
    margin-left: 95px;
  }

  .u-lg-ml-100 {
    margin-left: 100px;
  }

  .u-lg-mr-0 {
    margin-right: 0px;
  }

  .u-lg-mr-5 {
    margin-right: 5px;
  }

  .u-lg-mr-10 {
    margin-right: 10px;
  }

  .u-lg-mr-15 {
    margin-right: 15px;
  }

  .u-lg-mr-20 {
    margin-right: 20px;
  }

  .u-lg-mr-25 {
    margin-right: 25px;
  }

  .u-lg-mr-30 {
    margin-right: 30px;
  }

  .u-lg-mr-35 {
    margin-right: 35px;
  }

  .u-lg-mr-40 {
    margin-right: 40px;
  }

  .u-lg-mr-45 {
    margin-right: 45px;
  }

  .u-lg-mr-50 {
    margin-right: 50px;
  }

  .u-lg-mr-55 {
    margin-right: 55px;
  }

  .u-lg-mr-60 {
    margin-right: 60px;
  }

  .u-lg-mr-65 {
    margin-right: 65px;
  }

  .u-lg-mr-70 {
    margin-right: 70px;
  }

  .u-lg-mr-75 {
    margin-right: 75px;
  }

  .u-lg-mr-80 {
    margin-right: 80px;
  }

  .u-lg-mr-85 {
    margin-right: 85px;
  }

  .u-lg-mr-90 {
    margin-right: 90px;
  }

  .u-lg-mr-95 {
    margin-right: 95px;
  }

  .u-lg-mr-100 {
    margin-right: 100px;
  }
}
/******************************************************************************
* PADDING
*******************************************************************************/
.u-p-0 {
  padding: 0 !important;
}

.u-p-xs {
  padding: 1rem !important;
}

.u-p-sm {
  padding: 2rem !important;
}

.u-p-md {
  padding: 3rem !important;
}

.u-p-lg {
  padding: 4rem !important;
}

.u-p-xl {
  padding: 6rem !important;
}

.u-p-xxl {
  padding: 8rem !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 1rem !important;
}

.u-pt-sm {
  padding-top: 2rem !important;
}

.u-pt-md {
  padding-top: 3rem !important;
}

.u-pt-lg {
  padding-top: 4rem !important;
}

.u-pt-xl {
  padding-top: 6rem !important;
}

.u-pt-xxl {
  padding-top: 8rem !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-xs {
  padding-right: 1rem !important;
}

.u-pr-sm {
  padding-right: 2rem !important;
}

.u-pr-md {
  padding-right: 3rem !important;
}

.u-pr-lg {
  padding-right: 4rem !important;
}

.u-pr-xl {
  padding-right: 6rem !important;
}

.u-pr-xxl {
  padding-right: 8rem !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 1rem !important;
}

.u-pb-sm {
  padding-bottom: 2rem !important;
}

.u-pb-md {
  padding-bottom: 3rem !important;
}

.u-pb-lg {
  padding-bottom: 4rem !important;
}

.u-pb-xl {
  padding-bottom: 6rem !important;
}

.u-pb-xxl {
  padding-bottom: 8rem !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-xs {
  padding-left: 1rem !important;
}

.u-pl-sm {
  padding-left: 2rem !important;
}

.u-pl-md {
  padding-left: 3rem !important;
}

.u-pl-lg {
  padding-left: 4rem !important;
}

.u-pl-xl {
  padding-left: 6rem !important;
}

.u-pl-xxl {
  padding-left: 8rem !important;
}

@media (max-width: 767px) {
  .u-p-xs {
    padding: 0.5rem !important;
  }

  .u-p-sm {
    padding: 1rem !important;
  }

  .u-p-md {
    padding: 2rem !important;
  }

  .u-p-lg {
    padding: 3rem !important;
  }

  .u-p-xl {
    padding: 4rem !important;
  }

  .u-p-xxl {
    padding: 5rem !important;
  }

  .u-pr-xs {
    padding-right: 0.5rem !important;
  }

  .u-pr-sm {
    padding-right: 1rem !important;
  }

  .u-pr-md {
    padding-right: 2rem !important;
  }

  .u-pr-lg {
    padding-right: 3rem !important;
  }

  .u-pr-xl {
    padding-right: 4rem !important;
  }

  .u-pr-xxl {
    padding-right: 5rem !important;
  }

  .u-pt-xs {
    padding-top: 0.5rem !important;
  }

  .u-pt-sm {
    padding-top: 1rem !important;
  }

  .u-pt-md {
    padding-top: 2rem !important;
  }

  .u-pt-lg {
    padding-top: 3rem !important;
  }

  .u-pt-xl {
    padding-top: 4rem !important;
  }

  .u-pt-xxl {
    padding-top: 5rem !important;
  }

  .u-pb-xs {
    padding-bottom: 0.5rem !important;
  }

  .u-pb-sm {
    padding-bottom: 1rem !important;
  }

  .u-pb-md {
    padding-bottom: 2rem !important;
  }

  .u-pb-lg {
    padding-bottom: 3rem !important;
  }

  .u-pb-xl {
    padding-bottom: 4rem !important;
  }

  .u-pb-xxl {
    padding-bottom: 5rem !important;
  }

  .u-pl-xs {
    padding-left: 0.5rem !important;
  }

  .u-pl-sm {
    padding-left: 1rem !important;
  }

  .u-pl-md {
    padding-left: 2rem !important;
  }

  .u-pl-lg {
    padding-left: 3rem !important;
  }

  .u-pl-xl {
    padding-left: 4rem !important;
  }

  .u-pl-xxl {
    padding-left: 5rem !important;
  }
}
/******************************************************************************
* PADDING
*******************************************************************************/
.u-p0 {
  padding: 0px !important;
}

.u-p5 {
  padding: 5px !important;
}

.u-p10 {
  padding: 10px !important;
}

.u-p15 {
  padding: 15px !important;
}

.u-p20 {
  padding: 20px !important;
}

.u-p25 {
  padding: 25px !important;
}

.u-p30 {
  padding: 30px !important;
}

.u-p35 {
  padding: 35px !important;
}

.u-p40 {
  padding: 40px !important;
}

.u-p45 {
  padding: 45px !important;
}

.u-p50 {
  padding: 50px !important;
}

.u-p55 {
  padding: 55px !important;
}

.u-p60 {
  padding: 60px !important;
}

.u-p65 {
  padding: 65px !important;
}

.u-p70 {
  padding: 70px !important;
}

.u-p75 {
  padding: 75px !important;
}

.u-p80 {
  padding: 80px !important;
}

.u-p85 {
  padding: 85px !important;
}

.u-p90 {
  padding: 90px !important;
}

.u-p95 {
  padding: 95px !important;
}

.u-p100 {
  padding: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pl-5 {
  padding-left: 5px !important;
}

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

.u-pl-15 {
  padding-left: 15px !important;
}

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

.u-pl-25 {
  padding-left: 25px !important;
}

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

.u-pl-35 {
  padding-left: 35px !important;
}

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

.u-pl-45 {
  padding-left: 45px !important;
}

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

.u-pl-55 {
  padding-left: 55px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-pl-65 {
  padding-left: 65px !important;
}

.u-pl-70 {
  padding-left: 70px !important;
}

.u-pl-75 {
  padding-left: 75px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pl-85 {
  padding-left: 85px !important;
}

.u-pl-90 {
  padding-left: 90px !important;
}

.u-pl-95 {
  padding-left: 95px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pr-5 {
  padding-right: 5px !important;
}

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

.u-pr-15 {
  padding-right: 15px !important;
}

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

.u-pr-25 {
  padding-right: 25px !important;
}

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

.u-pr-35 {
  padding-right: 35px !important;
}

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

.u-pr-45 {
  padding-right: 45px !important;
}

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

.u-pr-55 {
  padding-right: 55px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pr-65 {
  padding-right: 65px !important;
}

.u-pr-70 {
  padding-right: 70px !important;
}

.u-pr-75 {
  padding-right: 75px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pr-85 {
  padding-right: 85px !important;
}

.u-pr-90 {
  padding-right: 90px !important;
}

.u-pr-95 {
  padding-right: 95px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-xs-p0 {
  padding: 0px;
}

.u-xs-p5 {
  padding: 5px;
}

.u-xs-p10 {
  padding: 10px;
}

.u-xs-p15 {
  padding: 15px;
}

.u-xs-p20 {
  padding: 20px;
}

.u-xs-p25 {
  padding: 25px;
}

.u-xs-p30 {
  padding: 30px;
}

.u-xs-p35 {
  padding: 35px;
}

.u-xs-p40 {
  padding: 40px;
}

.u-xs-p45 {
  padding: 45px;
}

.u-xs-p50 {
  padding: 50px;
}

.u-xs-p55 {
  padding: 55px;
}

.u-xs-p60 {
  padding: 60px;
}

.u-xs-p65 {
  padding: 65px;
}

.u-xs-p70 {
  padding: 70px;
}

.u-xs-p75 {
  padding: 75px;
}

.u-xs-p80 {
  padding: 80px;
}

.u-xs-p85 {
  padding: 85px;
}

.u-xs-p90 {
  padding: 90px;
}

.u-xs-p95 {
  padding: 95px;
}

.u-xs-p100 {
  padding: 100px;
}

.u-xs-pt-0 {
  padding-top: 0px;
}

.u-xs-pt-5 {
  padding-top: 5px;
}

.u-xs-pt-10 {
  padding-top: 10px;
}

.u-xs-pt-15 {
  padding-top: 15px;
}

.u-xs-pt-20 {
  padding-top: 20px;
}

.u-xs-pt-25 {
  padding-top: 25px;
}

.u-xs-pt-30 {
  padding-top: 30px;
}

.u-xs-pt-35 {
  padding-top: 35px;
}

.u-xs-pt-40 {
  padding-top: 40px;
}

.u-xs-pt-45 {
  padding-top: 45px;
}

.u-xs-pt-50 {
  padding-top: 50px;
}

.u-xs-pt-55 {
  padding-top: 55px;
}

.u-xs-pt-60 {
  padding-top: 60px;
}

.u-xs-pt-65 {
  padding-top: 65px;
}

.u-xs-pt-70 {
  padding-top: 70px;
}

.u-xs-pt-75 {
  padding-top: 75px;
}

.u-xs-pt-80 {
  padding-top: 80px;
}

.u-xs-pt-85 {
  padding-top: 85px;
}

.u-xs-pt-90 {
  padding-top: 90px;
}

.u-xs-pt-95 {
  padding-top: 95px;
}

.u-xs-pt-100 {
  padding-top: 100px;
}

.u-xs-pb-0 {
  padding-bottom: 0px;
}

.u-xs-pb-5 {
  padding-bottom: 5px;
}

.u-xs-pb-10 {
  padding-bottom: 10px;
}

.u-xs-pb-15 {
  padding-bottom: 15px;
}

.u-xs-pb-20 {
  padding-bottom: 20px;
}

.u-xs-pb-25 {
  padding-bottom: 25px;
}

.u-xs-pb-30 {
  padding-bottom: 30px;
}

.u-xs-pb-35 {
  padding-bottom: 35px;
}

.u-xs-pb-40 {
  padding-bottom: 40px;
}

.u-xs-pb-45 {
  padding-bottom: 45px;
}

.u-xs-pb-50 {
  padding-bottom: 50px;
}

.u-xs-pb-55 {
  padding-bottom: 55px;
}

.u-xs-pb-60 {
  padding-bottom: 60px;
}

.u-xs-pb-65 {
  padding-bottom: 65px;
}

.u-xs-pb-70 {
  padding-bottom: 70px;
}

.u-xs-pb-75 {
  padding-bottom: 75px;
}

.u-xs-pb-80 {
  padding-bottom: 80px;
}

.u-xs-pb-85 {
  padding-bottom: 85px;
}

.u-xs-pb-90 {
  padding-bottom: 90px;
}

.u-xs-pb-95 {
  padding-bottom: 95px;
}

.u-xs-pb-100 {
  padding-bottom: 100px;
}

.u-xs-pl-0 {
  padding-left: 0px;
}

.u-xs-pl-5 {
  padding-left: 5px;
}

.u-xs-pl-10 {
  padding-left: 10px;
}

.u-xs-pl-15 {
  padding-left: 15px;
}

.u-xs-pl-20 {
  padding-left: 20px;
}

.u-xs-pl-25 {
  padding-left: 25px;
}

.u-xs-pl-30 {
  padding-left: 30px;
}

.u-xs-pl-35 {
  padding-left: 35px;
}

.u-xs-pl-40 {
  padding-left: 40px;
}

.u-xs-pl-45 {
  padding-left: 45px;
}

.u-xs-pl-50 {
  padding-left: 50px;
}

.u-xs-pl-55 {
  padding-left: 55px;
}

.u-xs-pl-60 {
  padding-left: 60px;
}

.u-xs-pl-65 {
  padding-left: 65px;
}

.u-xs-pl-70 {
  padding-left: 70px;
}

.u-xs-pl-75 {
  padding-left: 75px;
}

.u-xs-pl-80 {
  padding-left: 80px;
}

.u-xs-pl-85 {
  padding-left: 85px;
}

.u-xs-pl-90 {
  padding-left: 90px;
}

.u-xs-pl-95 {
  padding-left: 95px;
}

.u-xs-pl-100 {
  padding-left: 100px;
}

.u-xs-pr-0 {
  padding-right: 0px;
}

.u-xs-pr-5 {
  padding-right: 5px;
}

.u-xs-pr-10 {
  padding-right: 10px;
}

.u-xs-pr-15 {
  padding-right: 15px;
}

.u-xs-pr-20 {
  padding-right: 20px;
}

.u-xs-pr-25 {
  padding-right: 25px;
}

.u-xs-pr-30 {
  padding-right: 30px;
}

.u-xs-pr-35 {
  padding-right: 35px;
}

.u-xs-pr-40 {
  padding-right: 40px;
}

.u-xs-pr-45 {
  padding-right: 45px;
}

.u-xs-pr-50 {
  padding-right: 50px;
}

.u-xs-pr-55 {
  padding-right: 55px;
}

.u-xs-pr-60 {
  padding-right: 60px;
}

.u-xs-pr-65 {
  padding-right: 65px;
}

.u-xs-pr-70 {
  padding-right: 70px;
}

.u-xs-pr-75 {
  padding-right: 75px;
}

.u-xs-pr-80 {
  padding-right: 80px;
}

.u-xs-pr-85 {
  padding-right: 85px;
}

.u-xs-pr-90 {
  padding-right: 90px;
}

.u-xs-pr-95 {
  padding-right: 95px;
}

.u-xs-pr-100 {
  padding-right: 100px;
}

@media (min-width: 768px) {
  .u-sm-p0 {
    padding: 0px;
  }

  .u-sm-p5 {
    padding: 5px;
  }

  .u-sm-p10 {
    padding: 10px;
  }

  .u-sm-p15 {
    padding: 15px;
  }

  .u-sm-p20 {
    padding: 20px;
  }

  .u-sm-p25 {
    padding: 25px;
  }

  .u-sm-p30 {
    padding: 30px;
  }

  .u-sm-p35 {
    padding: 35px;
  }

  .u-sm-p40 {
    padding: 40px;
  }

  .u-sm-p45 {
    padding: 45px;
  }

  .u-sm-p50 {
    padding: 50px;
  }

  .u-sm-p55 {
    padding: 55px;
  }

  .u-sm-p60 {
    padding: 60px;
  }

  .u-sm-p65 {
    padding: 65px;
  }

  .u-sm-p70 {
    padding: 70px;
  }

  .u-sm-p75 {
    padding: 75px;
  }

  .u-sm-p80 {
    padding: 80px;
  }

  .u-sm-p85 {
    padding: 85px;
  }

  .u-sm-p90 {
    padding: 90px;
  }

  .u-sm-p95 {
    padding: 95px;
  }

  .u-sm-p100 {
    padding: 100px;
  }

  .u-sm-pt-0 {
    padding-top: 0px;
  }

  .u-sm-pt-5 {
    padding-top: 5px;
  }

  .u-sm-pt-10 {
    padding-top: 10px;
  }

  .u-sm-pt-15 {
    padding-top: 15px;
  }

  .u-sm-pt-20 {
    padding-top: 20px;
  }

  .u-sm-pt-25 {
    padding-top: 25px;
  }

  .u-sm-pt-30 {
    padding-top: 30px;
  }

  .u-sm-pt-35 {
    padding-top: 35px;
  }

  .u-sm-pt-40 {
    padding-top: 40px;
  }

  .u-sm-pt-45 {
    padding-top: 45px;
  }

  .u-sm-pt-50 {
    padding-top: 50px;
  }

  .u-sm-pt-55 {
    padding-top: 55px;
  }

  .u-sm-pt-60 {
    padding-top: 60px;
  }

  .u-sm-pt-65 {
    padding-top: 65px;
  }

  .u-sm-pt-70 {
    padding-top: 70px;
  }

  .u-sm-pt-75 {
    padding-top: 75px;
  }

  .u-sm-pt-80 {
    padding-top: 80px;
  }

  .u-sm-pt-85 {
    padding-top: 85px;
  }

  .u-sm-pt-90 {
    padding-top: 90px;
  }

  .u-sm-pt-95 {
    padding-top: 95px;
  }

  .u-sm-pt-100 {
    padding-top: 100px;
  }

  .u-sm-pb-0 {
    padding-bottom: 0px;
  }

  .u-sm-pb-5 {
    padding-bottom: 5px;
  }

  .u-sm-pb-10 {
    padding-bottom: 10px;
  }

  .u-sm-pb-15 {
    padding-bottom: 15px;
  }

  .u-sm-pb-20 {
    padding-bottom: 20px;
  }

  .u-sm-pb-25 {
    padding-bottom: 25px;
  }

  .u-sm-pb-30 {
    padding-bottom: 30px;
  }

  .u-sm-pb-35 {
    padding-bottom: 35px;
  }

  .u-sm-pb-40 {
    padding-bottom: 40px;
  }

  .u-sm-pb-45 {
    padding-bottom: 45px;
  }

  .u-sm-pb-50 {
    padding-bottom: 50px;
  }

  .u-sm-pb-55 {
    padding-bottom: 55px;
  }

  .u-sm-pb-60 {
    padding-bottom: 60px;
  }

  .u-sm-pb-65 {
    padding-bottom: 65px;
  }

  .u-sm-pb-70 {
    padding-bottom: 70px;
  }

  .u-sm-pb-75 {
    padding-bottom: 75px;
  }

  .u-sm-pb-80 {
    padding-bottom: 80px;
  }

  .u-sm-pb-85 {
    padding-bottom: 85px;
  }

  .u-sm-pb-90 {
    padding-bottom: 90px;
  }

  .u-sm-pb-95 {
    padding-bottom: 95px;
  }

  .u-sm-pb-100 {
    padding-bottom: 100px;
  }

  .u-sm-pl-0 {
    padding-left: 0px;
  }

  .u-sm-pl-5 {
    padding-left: 5px;
  }

  .u-sm-pl-10 {
    padding-left: 10px;
  }

  .u-sm-pl-15 {
    padding-left: 15px;
  }

  .u-sm-pl-20 {
    padding-left: 20px;
  }

  .u-sm-pl-25 {
    padding-left: 25px;
  }

  .u-sm-pl-30 {
    padding-left: 30px;
  }

  .u-sm-pl-35 {
    padding-left: 35px;
  }

  .u-sm-pl-40 {
    padding-left: 40px;
  }

  .u-sm-pl-45 {
    padding-left: 45px;
  }

  .u-sm-pl-50 {
    padding-left: 50px;
  }

  .u-sm-pl-55 {
    padding-left: 55px;
  }

  .u-sm-pl-60 {
    padding-left: 60px;
  }

  .u-sm-pl-65 {
    padding-left: 65px;
  }

  .u-sm-pl-70 {
    padding-left: 70px;
  }

  .u-sm-pl-75 {
    padding-left: 75px;
  }

  .u-sm-pl-80 {
    padding-left: 80px;
  }

  .u-sm-pl-85 {
    padding-left: 85px;
  }

  .u-sm-pl-90 {
    padding-left: 90px;
  }

  .u-sm-pl-95 {
    padding-left: 95px;
  }

  .u-sm-pl-100 {
    padding-left: 100px;
  }

  .u-sm-pr-0 {
    padding-right: 0px;
  }

  .u-sm-pr-5 {
    padding-right: 5px;
  }

  .u-sm-pr-10 {
    padding-right: 10px;
  }

  .u-sm-pr-15 {
    padding-right: 15px;
  }

  .u-sm-pr-20 {
    padding-right: 20px;
  }

  .u-sm-pr-25 {
    padding-right: 25px;
  }

  .u-sm-pr-30 {
    padding-right: 30px;
  }

  .u-sm-pr-35 {
    padding-right: 35px;
  }

  .u-sm-pr-40 {
    padding-right: 40px;
  }

  .u-sm-pr-45 {
    padding-right: 45px;
  }

  .u-sm-pr-50 {
    padding-right: 50px;
  }

  .u-sm-pr-55 {
    padding-right: 55px;
  }

  .u-sm-pr-60 {
    padding-right: 60px;
  }

  .u-sm-pr-65 {
    padding-right: 65px;
  }

  .u-sm-pr-70 {
    padding-right: 70px;
  }

  .u-sm-pr-75 {
    padding-right: 75px;
  }

  .u-sm-pr-80 {
    padding-right: 80px;
  }

  .u-sm-pr-85 {
    padding-right: 85px;
  }

  .u-sm-pr-90 {
    padding-right: 90px;
  }

  .u-sm-pr-95 {
    padding-right: 95px;
  }

  .u-sm-pr-100 {
    padding-right: 100px;
  }
}
@media (min-width: 1024px) {
  .u-md-p0 {
    padding: 0px;
  }

  .u-md-p5 {
    padding: 5px;
  }

  .u-md-p10 {
    padding: 10px;
  }

  .u-md-p15 {
    padding: 15px;
  }

  .u-md-p20 {
    padding: 20px;
  }

  .u-md-p25 {
    padding: 25px;
  }

  .u-md-p30 {
    padding: 30px;
  }

  .u-md-p35 {
    padding: 35px;
  }

  .u-md-p40 {
    padding: 40px;
  }

  .u-md-p45 {
    padding: 45px;
  }

  .u-md-p50 {
    padding: 50px;
  }

  .u-md-p55 {
    padding: 55px;
  }

  .u-md-p60 {
    padding: 60px;
  }

  .u-md-p65 {
    padding: 65px;
  }

  .u-md-p70 {
    padding: 70px;
  }

  .u-md-p75 {
    padding: 75px;
  }

  .u-md-p80 {
    padding: 80px;
  }

  .u-md-p85 {
    padding: 85px;
  }

  .u-md-p90 {
    padding: 90px;
  }

  .u-md-p95 {
    padding: 95px;
  }

  .u-md-p100 {
    padding: 100px;
  }

  .u-md-pt-0 {
    padding-top: 0px;
  }

  .u-md-pt-5 {
    padding-top: 5px;
  }

  .u-md-pt-10 {
    padding-top: 10px;
  }

  .u-md-pt-15 {
    padding-top: 15px;
  }

  .u-md-pt-20 {
    padding-top: 20px;
  }

  .u-md-pt-25 {
    padding-top: 25px;
  }

  .u-md-pt-30 {
    padding-top: 30px;
  }

  .u-md-pt-35 {
    padding-top: 35px;
  }

  .u-md-pt-40 {
    padding-top: 40px;
  }

  .u-md-pt-45 {
    padding-top: 45px;
  }

  .u-md-pt-50 {
    padding-top: 50px;
  }

  .u-md-pt-55 {
    padding-top: 55px;
  }

  .u-md-pt-60 {
    padding-top: 60px;
  }

  .u-md-pt-65 {
    padding-top: 65px;
  }

  .u-md-pt-70 {
    padding-top: 70px;
  }

  .u-md-pt-75 {
    padding-top: 75px;
  }

  .u-md-pt-80 {
    padding-top: 80px;
  }

  .u-md-pt-85 {
    padding-top: 85px;
  }

  .u-md-pt-90 {
    padding-top: 90px;
  }

  .u-md-pt-95 {
    padding-top: 95px;
  }

  .u-md-pt-100 {
    padding-top: 100px;
  }

  .u-md-pb-0 {
    padding-bottom: 0px;
  }

  .u-md-pb-5 {
    padding-bottom: 5px;
  }

  .u-md-pb-10 {
    padding-bottom: 10px;
  }

  .u-md-pb-15 {
    padding-bottom: 15px;
  }

  .u-md-pb-20 {
    padding-bottom: 20px;
  }

  .u-md-pb-25 {
    padding-bottom: 25px;
  }

  .u-md-pb-30 {
    padding-bottom: 30px;
  }

  .u-md-pb-35 {
    padding-bottom: 35px;
  }

  .u-md-pb-40 {
    padding-bottom: 40px;
  }

  .u-md-pb-45 {
    padding-bottom: 45px;
  }

  .u-md-pb-50 {
    padding-bottom: 50px;
  }

  .u-md-pb-55 {
    padding-bottom: 55px;
  }

  .u-md-pb-60 {
    padding-bottom: 60px;
  }

  .u-md-pb-65 {
    padding-bottom: 65px;
  }

  .u-md-pb-70 {
    padding-bottom: 70px;
  }

  .u-md-pb-75 {
    padding-bottom: 75px;
  }

  .u-md-pb-80 {
    padding-bottom: 80px;
  }

  .u-md-pb-85 {
    padding-bottom: 85px;
  }

  .u-md-pb-90 {
    padding-bottom: 90px;
  }

  .u-md-pb-95 {
    padding-bottom: 95px;
  }

  .u-md-pb-100 {
    padding-bottom: 100px;
  }

  .u-md-pl-0 {
    padding-left: 0px;
  }

  .u-md-pl-5 {
    padding-left: 5px;
  }

  .u-md-pl-10 {
    padding-left: 10px;
  }

  .u-md-pl-15 {
    padding-left: 15px;
  }

  .u-md-pl-20 {
    padding-left: 20px;
  }

  .u-md-pl-25 {
    padding-left: 25px;
  }

  .u-md-pl-30 {
    padding-left: 30px;
  }

  .u-md-pl-35 {
    padding-left: 35px;
  }

  .u-md-pl-40 {
    padding-left: 40px;
  }

  .u-md-pl-45 {
    padding-left: 45px;
  }

  .u-md-pl-50 {
    padding-left: 50px;
  }

  .u-md-pl-55 {
    padding-left: 55px;
  }

  .u-md-pl-60 {
    padding-left: 60px;
  }

  .u-md-pl-65 {
    padding-left: 65px;
  }

  .u-md-pl-70 {
    padding-left: 70px;
  }

  .u-md-pl-75 {
    padding-left: 75px;
  }

  .u-md-pl-80 {
    padding-left: 80px;
  }

  .u-md-pl-85 {
    padding-left: 85px;
  }

  .u-md-pl-90 {
    padding-left: 90px;
  }

  .u-md-pl-95 {
    padding-left: 95px;
  }

  .u-md-pl-100 {
    padding-left: 100px;
  }

  .u-md-pr-0 {
    padding-right: 0px;
  }

  .u-md-pr-5 {
    padding-right: 5px;
  }

  .u-md-pr-10 {
    padding-right: 10px;
  }

  .u-md-pr-15 {
    padding-right: 15px;
  }

  .u-md-pr-20 {
    padding-right: 20px;
  }

  .u-md-pr-25 {
    padding-right: 25px;
  }

  .u-md-pr-30 {
    padding-right: 30px;
  }

  .u-md-pr-35 {
    padding-right: 35px;
  }

  .u-md-pr-40 {
    padding-right: 40px;
  }

  .u-md-pr-45 {
    padding-right: 45px;
  }

  .u-md-pr-50 {
    padding-right: 50px;
  }

  .u-md-pr-55 {
    padding-right: 55px;
  }

  .u-md-pr-60 {
    padding-right: 60px;
  }

  .u-md-pr-65 {
    padding-right: 65px;
  }

  .u-md-pr-70 {
    padding-right: 70px;
  }

  .u-md-pr-75 {
    padding-right: 75px;
  }

  .u-md-pr-80 {
    padding-right: 80px;
  }

  .u-md-pr-85 {
    padding-right: 85px;
  }

  .u-md-pr-90 {
    padding-right: 90px;
  }

  .u-md-pr-95 {
    padding-right: 95px;
  }

  .u-md-pr-100 {
    padding-right: 100px;
  }
}
@media (min-width: 1281px) {
  .u-lg-p0 {
    padding: 0px;
  }

  .u-lg-p5 {
    padding: 5px;
  }

  .u-lg-p10 {
    padding: 10px;
  }

  .u-lg-p15 {
    padding: 15px;
  }

  .u-lg-p20 {
    padding: 20px;
  }

  .u-lg-p25 {
    padding: 25px;
  }

  .u-lg-p30 {
    padding: 30px;
  }

  .u-lg-p35 {
    padding: 35px;
  }

  .u-lg-p40 {
    padding: 40px;
  }

  .u-lg-p45 {
    padding: 45px;
  }

  .u-lg-p50 {
    padding: 50px;
  }

  .u-lg-p55 {
    padding: 55px;
  }

  .u-lg-p60 {
    padding: 60px;
  }

  .u-lg-p65 {
    padding: 65px;
  }

  .u-lg-p70 {
    padding: 70px;
  }

  .u-lg-p75 {
    padding: 75px;
  }

  .u-lg-p80 {
    padding: 80px;
  }

  .u-lg-p85 {
    padding: 85px;
  }

  .u-lg-p90 {
    padding: 90px;
  }

  .u-lg-p95 {
    padding: 95px;
  }

  .u-lg-p100 {
    padding: 100px;
  }

  .u-lg-pt-0 {
    padding-top: 0px;
  }

  .u-lg-pt-5 {
    padding-top: 5px;
  }

  .u-lg-pt-10 {
    padding-top: 10px;
  }

  .u-lg-pt-15 {
    padding-top: 15px;
  }

  .u-lg-pt-20 {
    padding-top: 20px;
  }

  .u-lg-pt-25 {
    padding-top: 25px;
  }

  .u-lg-pt-30 {
    padding-top: 30px;
  }

  .u-lg-pt-35 {
    padding-top: 35px;
  }

  .u-lg-pt-40 {
    padding-top: 40px;
  }

  .u-lg-pt-45 {
    padding-top: 45px;
  }

  .u-lg-pt-50 {
    padding-top: 50px;
  }

  .u-lg-pt-55 {
    padding-top: 55px;
  }

  .u-lg-pt-60 {
    padding-top: 60px;
  }

  .u-lg-pt-65 {
    padding-top: 65px;
  }

  .u-lg-pt-70 {
    padding-top: 70px;
  }

  .u-lg-pt-75 {
    padding-top: 75px;
  }

  .u-lg-pt-80 {
    padding-top: 80px;
  }

  .u-lg-pt-85 {
    padding-top: 85px;
  }

  .u-lg-pt-90 {
    padding-top: 90px;
  }

  .u-lg-pt-95 {
    padding-top: 95px;
  }

  .u-lg-pt-100 {
    padding-top: 100px;
  }

  .u-lg-pb-0 {
    padding-bottom: 0px;
  }

  .u-lg-pb-5 {
    padding-bottom: 5px;
  }

  .u-lg-pb-10 {
    padding-bottom: 10px;
  }

  .u-lg-pb-15 {
    padding-bottom: 15px;
  }

  .u-lg-pb-20 {
    padding-bottom: 20px;
  }

  .u-lg-pb-25 {
    padding-bottom: 25px;
  }

  .u-lg-pb-30 {
    padding-bottom: 30px;
  }

  .u-lg-pb-35 {
    padding-bottom: 35px;
  }

  .u-lg-pb-40 {
    padding-bottom: 40px;
  }

  .u-lg-pb-45 {
    padding-bottom: 45px;
  }

  .u-lg-pb-50 {
    padding-bottom: 50px;
  }

  .u-lg-pb-55 {
    padding-bottom: 55px;
  }

  .u-lg-pb-60 {
    padding-bottom: 60px;
  }

  .u-lg-pb-65 {
    padding-bottom: 65px;
  }

  .u-lg-pb-70 {
    padding-bottom: 70px;
  }

  .u-lg-pb-75 {
    padding-bottom: 75px;
  }

  .u-lg-pb-80 {
    padding-bottom: 80px;
  }

  .u-lg-pb-85 {
    padding-bottom: 85px;
  }

  .u-lg-pb-90 {
    padding-bottom: 90px;
  }

  .u-lg-pb-95 {
    padding-bottom: 95px;
  }

  .u-lg-pb-100 {
    padding-bottom: 100px;
  }

  .u-lg-pl-0 {
    padding-left: 0px;
  }

  .u-lg-pl-5 {
    padding-left: 5px;
  }

  .u-lg-pl-10 {
    padding-left: 10px;
  }

  .u-lg-pl-15 {
    padding-left: 15px;
  }

  .u-lg-pl-20 {
    padding-left: 20px;
  }

  .u-lg-pl-25 {
    padding-left: 25px;
  }

  .u-lg-pl-30 {
    padding-left: 30px;
  }

  .u-lg-pl-35 {
    padding-left: 35px;
  }

  .u-lg-pl-40 {
    padding-left: 40px;
  }

  .u-lg-pl-45 {
    padding-left: 45px;
  }

  .u-lg-pl-50 {
    padding-left: 50px;
  }

  .u-lg-pl-55 {
    padding-left: 55px;
  }

  .u-lg-pl-60 {
    padding-left: 60px;
  }

  .u-lg-pl-65 {
    padding-left: 65px;
  }

  .u-lg-pl-70 {
    padding-left: 70px;
  }

  .u-lg-pl-75 {
    padding-left: 75px;
  }

  .u-lg-pl-80 {
    padding-left: 80px;
  }

  .u-lg-pl-85 {
    padding-left: 85px;
  }

  .u-lg-pl-90 {
    padding-left: 90px;
  }

  .u-lg-pl-95 {
    padding-left: 95px;
  }

  .u-lg-pl-100 {
    padding-left: 100px;
  }

  .u-lg-pr-0 {
    padding-right: 0px;
  }

  .u-lg-pr-5 {
    padding-right: 5px;
  }

  .u-lg-pr-10 {
    padding-right: 10px;
  }

  .u-lg-pr-15 {
    padding-right: 15px;
  }

  .u-lg-pr-20 {
    padding-right: 20px;
  }

  .u-lg-pr-25 {
    padding-right: 25px;
  }

  .u-lg-pr-30 {
    padding-right: 30px;
  }

  .u-lg-pr-35 {
    padding-right: 35px;
  }

  .u-lg-pr-40 {
    padding-right: 40px;
  }

  .u-lg-pr-45 {
    padding-right: 45px;
  }

  .u-lg-pr-50 {
    padding-right: 50px;
  }

  .u-lg-pr-55 {
    padding-right: 55px;
  }

  .u-lg-pr-60 {
    padding-right: 60px;
  }

  .u-lg-pr-65 {
    padding-right: 65px;
  }

  .u-lg-pr-70 {
    padding-right: 70px;
  }

  .u-lg-pr-75 {
    padding-right: 75px;
  }

  .u-lg-pr-80 {
    padding-right: 80px;
  }

  .u-lg-pr-85 {
    padding-right: 85px;
  }

  .u-lg-pr-90 {
    padding-right: 90px;
  }

  .u-lg-pr-95 {
    padding-right: 95px;
  }

  .u-lg-pr-100 {
    padding-right: 100px;
  }
}
.u-lisi-n {
  list-style-image: none !important;
}

.u-va-sup {
  vertical-align: super !important;
}

.u-va-t {
  vertical-align: top !important;
}

.u-va-tt {
  vertical-align: text-top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-bl {
  vertical-align: baseline !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

.u-va-tb {
  vertical-align: text-bottom !important;
}

.u-va-sub {
  vertical-align: sub !important;
}

/* =========================================================
BORDER
========================================================= */
.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-o {
  text-decoration: overline !important;
}

.u-td-l {
  text-decoration: line-through !important;
}

.u-te-n {
  -webkit-text-emphasis: none !important;
  text-emphasis: none !important;
}

/* =========================================================
FLOAT
========================================================= */
.u-float-l {
  float: left !important;
}

.u-float-r {
  float: right !important;
}

/* =========================================================
COLOR
========================================================= */
.u-c-require {
  color: #d5007d !important;
}

.u-c-white {
  color: #ffffff !important;
}

/* =========================================================
CLEAR
========================================================= */
.clear,
.u-clearfix:before,
.u-clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.u-clearfix:after {
  clear: both;
}

/* =========================================================
DISPLAY
========================================================= */
.u-d-n {
  display: none !important;
}

.u-d-b {
  display: block !important;
}

.u-d-f {
  display: flex !important;
}

.u-d-if {
  display: inline-flex !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-li {
  display: list-item !important;
}

.u-d-ri {
  display: run-in !important;
}

.u-d-cp {
  display: compact !important;
}

.u-d-tb {
  display: table !important;
}

.u-d-itb {
  display: inline-table !important;
}

.u-d-tbcp {
  display: table-caption !important;
}

.u-d-tbcl {
  display: table-column !important;
}

.u-d-tbclg {
  display: table-column-group !important;
}

.u-d-tbhg {
  display: table-header-group !important;
}

.u-d-tbfg {
  display: table-footer-group !important;
}

.u-d-tbr {
  display: table-row !important;
}

.u-d-tbrg {
  display: table-row-group !important;
}

.u-d-tbc {
  display: table-cell !important;
}

.u-d-rb {
  display: ruby !important;
}

.u-d-rbb {
  display: ruby-base !important;
}

.u-d-rbbg {
  display: ruby-base-group !important;
}

.u-d-rbt {
  display: ruby-text !important;
}

.u-d-rbtg {
  display: ruby-text-group !important;
}

.u-sp-block {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-block {
    display: block !important;
  }
}

.u-pc-block {
  display: block !important;
}
@media (max-width: 767px) {
  .u-pc-block {
    display: none !important;
  }
}

.u-tablet-none {
  display: block !important;
}
@media (max-width: 1023px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-tablet-block {
  display: none !important;
}
@media (max-width: 1023px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-sp-inline {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-inline {
    display: inline !important;
  }
}

.u-pc-inline {
  display: inline !important;
}
@media (max-width: 767px) {
  .u-pc-inline {
    display: none !important;
  }
}

.u-sp-inlineblock {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-inlineblock {
    display: inline-block !important;
  }
}

.u-pc-inlineblock {
  display: inline-block !important;
}
@media (max-width: 767px) {
  .u-pc-inlineblock {
    display: none !important;
  }
}

/* =========================================================
IMG
========================================================= */
.u-img-responsive {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.u-img-no-responsive {
  display: inline-block;
  max-width: auto;
  height: auto;
}

.u-img-fit {
  display: inline-block;
  width: 100%;
  height: auto;
}

/* =========================================================
TRANSITION-DELAY
========================================================= */
.is-onscreen .u-delay-004 {
  transition-delay: 0.04s !important;
  animation-delay: 0.04s !important;
}
.is-onscreen .u-delay-005 {
  transition-delay: 0.05s !important;
  animation-delay: 0.05s !important;
}
.is-onscreen .u-delay-006 {
  transition-delay: 0.06s !important;
  animation-delay: 0.06s !important;
}
.is-onscreen .u-delay-007 {
  transition-delay: 0.07s !important;
  animation-delay: 0.07s !important;
}
.is-onscreen .u-delay-008 {
  transition-delay: 0.08s !important;
  animation-delay: 0.08s !important;
}
.is-onscreen .u-delay-010 {
  transition-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}
.is-onscreen .u-delay-011 {
  transition-delay: 0.11s !important;
  animation-delay: 0.11s !important;
}
.is-onscreen .u-delay-012 {
  transition-delay: 0.12s !important;
  animation-delay: 0.12s !important;
}
.is-onscreen .u-delay-013 {
  transition-delay: 0.13s !important;
  animation-delay: 0.13s !important;
}
.is-onscreen .u-delay-014 {
  transition-delay: 0.14s !important;
  animation-delay: 0.14s !important;
}
.is-onscreen .u-delay-015 {
  transition-delay: 0.15s !important;
  animation-delay: 0.15s !important;
}
.is-onscreen .u-delay-016 {
  transition-delay: 0.16s !important;
  animation-delay: 0.16s !important;
}
.is-onscreen .u-delay-020 {
  transition-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}
.is-onscreen .u-delay-024 {
  transition-delay: 0.24s !important;
  animation-delay: 0.24s !important;
}
.is-onscreen .u-delay-025 {
  transition-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}
.is-onscreen .u-delay-028 {
  transition-delay: 0.28s !important;
  animation-delay: 0.28s !important;
}
.is-onscreen .u-delay-030 {
  transition-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.is-onscreen .u-delay-032 {
  transition-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}
.is-onscreen .u-delay-035 {
  transition-delay: 0.35s !important;
  animation-delay: 0.35s !important;
}
.is-onscreen .u-delay-036 {
  transition-delay: 0.36s !important;
  animation-delay: 0.36s !important;
}
.is-onscreen .u-delay-040 {
  transition-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}
.is-onscreen .u-delay-044 {
  transition-delay: 0.44s !important;
  animation-delay: 0.44s !important;
}
.is-onscreen .u-delay-045 {
  transition-delay: 0.45s !important;
  animation-delay: 0.45s !important;
}
.is-onscreen .u-delay-048 {
  transition-delay: 0.48s !important;
  animation-delay: 0.48s !important;
}
.is-onscreen .u-delay-050 {
  transition-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}
.is-onscreen .u-delay-052 {
  transition-delay: 0.52s !important;
  animation-delay: 0.52s !important;
}
.is-onscreen .u-delay-055 {
  transition-delay: 0.55s !important;
  animation-delay: 0.55s !important;
}
.is-onscreen .u-delay-056 {
  transition-delay: 0.56s !important;
  animation-delay: 0.56s !important;
}
.is-onscreen .u-delay-060 {
  transition-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.is-onscreen .u-delay-064 {
  transition-delay: 0.64s !important;
  animation-delay: 0.64s !important;
}
.is-onscreen .u-delay-065 {
  transition-delay: 0.65s !important;
  animation-delay: 0.65s !important;
}
.is-onscreen .u-delay-068 {
  transition-delay: 0.68s !important;
  animation-delay: 0.68s !important;
}
.is-onscreen .u-delay-070 {
  transition-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.is-onscreen .u-delay-072 {
  transition-delay: 0.72s !important;
  animation-delay: 0.72s !important;
}
.is-onscreen .u-delay-075 {
  transition-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}
.is-onscreen .u-delay-076 {
  transition-delay: 0.76s !important;
  animation-delay: 0.76s !important;
}
.is-onscreen .u-delay-080 {
  transition-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}
.is-onscreen .u-delay-085 {
  transition-delay: 0.85s !important;
  animation-delay: 0.85s !important;
}
.is-onscreen .u-delay-090 {
  transition-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}
.is-onscreen .u-delay-095 {
  transition-delay: 0.95s !important;
  animation-delay: 0.95s !important;
}
.is-onscreen .u-delay-100 {
  transition-delay: 1s !important;
  animation-delay: 1s !important;
}
.is-onscreen .u-delay-105 {
  transition-delay: 1.05s !important;
  animation-delay: 1.05s !important;
}
.is-onscreen .u-delay-110 {
  transition-delay: 1.1s !important;
  animation-delay: 1.1s !important;
}
.is-onscreen .u-delay-105 {
  transition-delay: 1.05s !important;
  animation-delay: 1.05s !important;
}
.is-onscreen .u-delay-110 {
  transition-delay: 1.1s !important;
  animation-delay: 1.1s !important;
}
.is-onscreen .u-delay-115 {
  transition-delay: 1.15s !important;
  animation-delay: 1.15s !important;
}
.is-onscreen .u-delay-120 {
  transition-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}
.is-onscreen .u-delay-125 {
  transition-delay: 1.25s !important;
  animation-delay: 1.25s !important;
}
.is-onscreen .u-delay-130 {
  transition-delay: 1.3s !important;
  animation-delay: 1.3s !important;
}
.is-onscreen .u-delay-135 {
  transition-delay: 1.35s !important;
  animation-delay: 1.35s !important;
}
.is-onscreen .u-delay-140 {
  transition-delay: 1.4s !important;
  animation-delay: 1.4s !important;
}
.is-onscreen .u-delay-145 {
  transition-delay: 1.45s !important;
  animation-delay: 1.45s !important;
}
.is-onscreen .u-delay-150 {
  transition-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}
.is-onscreen .u-delay-155 {
  transition-delay: 1.55s !important;
  animation-delay: 1.55s !important;
}
.is-onscreen .u-delay-160 {
  transition-delay: 1.6s !important;
  animation-delay: 1.6s !important;
}
.is-onscreen .u-delay-165 {
  transition-delay: 1.65s !important;
  animation-delay: 1.65s !important;
}
.is-onscreen .u-delay-170 {
  transition-delay: 1.7s !important;
  animation-delay: 1.7s !important;
}
.is-onscreen .u-delay-180 {
  transition-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}
.is-onscreen .u-delay-190 {
  transition-delay: 1.9s !important;
  animation-delay: 1.9s !important;
}
.is-onscreen .u-delay-200 {
  transition-delay: 2s !important;
  animation-delay: 2s !important;
}

/* =========================================================
YOUTUBE
========================================================= */
.u-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.u-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* =========================================================
POINTER-EVENTS
========================================================= */
.u-hover-shit {
  pointer-events: none;
}

/* =========================================================
onscreen
========================================================= */
/* =========================================================
ANIMATION
========================================================= */
@keyframes moveLineLeftToRight {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  49.9% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes moveLineTopToBottom {
  0% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  49.9% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
  50% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: center top;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-p-r {
  position: relative !important;
}

#sponsor .c-common-sponsor__list {
  justify-content: flex-start;
  justify-content: center;
}
#sponsor .main_sponsor {
  margin-bottom: 60px;
}
#support {
}
#support .c-paragraph.c-paragraph--xs {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#support .c-paragraph.c-paragraph--xs span {
  padding-right: 4px;
}
#support .sub {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
}

#support .sub .box {
  width: 100px;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 10px;
}
#support .sub .box h3 {
  margin: auto;
  margin-bottom: 20px;
}
#support .sub .box a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#support .sub .box:nth-child(2) a {
  margin-top: 20px;
}
#support .c-common__heading {
  margin-bottom: 20px;
}
#support .c-common__heading span {
  font-size: 16px;
}

.teaser-popup {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  opacity: 1;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  z-index: 20000;
  position: fixed;
}
.teaser-popup.clicked {
  opacity: 0;
  pointer-events: none;
}

.teaser-popup img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.teaser-popup .teaser-popup__body {
  background-color: #fff;
  min-height: 600px;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
  transition-delay: 1s;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  overscroll-behavior: contain;
  overflow-y: scroll;
  background-image: url(../images/top/shirofes_2025_after_bg_pc.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0;
}
.is-page-loaded .teaser-popup .teaser-popup__body {
  opacity: 1;
}

.teaser-popup .teaser-popup__body::after,
.teaser-popup .teaser-popup__body::before {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
}
.teaser-popup .teaser-popup__wrap {
  width: 100%;
  height: 100%;
  padding: 40px;
}
.teaser-popup .teaser-popup__inner {
  width: 100%;
  height: 100%;
  padding: 40px;
  border: solid 2px #c21920;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.teaser-popup .teaser-popup__img_01 {
  width: 400px;
  margin-bottom: 40px;
}
.teaser-popup .teaser-popup__img_02 {
  margin-bottom: 0px;
}
.teaser-popup .teaser-popup__img_03 {
  width: 220px;
}
.teaser-popup .teaser-popup__btn {
  margin-top: 20px;
}
.teaser-popup .teaser-popup__btn a {
  width: 480px;
}
.teaser-popup .jp {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  font-weight: 800;
  margin-bottom: 20px;
}
.teaser-popup .en {
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .teaser-popup .teaser-popup__inner {
    padding: 20px;
  }
  .teaser-popup .teaser-popup__wrap {
    padding: 10px;
  }
  .teaser-popup .teaser-popup__body {
    background-image: url(../images/top/shirofes_2025_after_bg_sp.jpg);
  }
  .teaser-popup .teaser-popup__img_01 {
    width: 60%;
    margin-bottom: 30px;
  }
  .teaser-popup .teaser-popup__img_02 {
    width: 100%;
    margin-bottom: 0px;
  }
  .teaser-popup .teaser-popup__img_03 {
    width: 60%;
  }
  .teaser-popup .teaser-popup__btn a {
    width: 100%;
    display: block;
    padding: 20px;
    font-size: 12px;
  }
  .teaser-popup .teaser-popup__btn {
    width: 100%;
    margin-top: 20px;
  }
  .teaser-popup .jp {
    text-align: left;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .teaser-popup .en {
    font-size: 10px;
    text-align: left;
    line-height: 1.6;
  }
}

/* =========================================================
after_movie
========================================================= */

#after_movie {
  background: #c21920;
}
#after_movie .wrap {
}
#after_movie .inner {
  padding-bottom: 200px;
}
#after_movie .movie_wrap {
}
#after_movie .movie_inner {
  padding-bottom: 56.25%;
  position: relative;
}
#after_movie .movie_inner iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
#after_movie .p-top-section__heading span {
  color: #fff;
}
#after_movie .p-top-section__heading span::before {
  content: "";
  display: block;
}
.l-header-logo svg {
  width: 129px;
}
.comming_wrap {
  /* background-color: #fafafa; */ /* display: flex; */ /* align-items: center; */ /* justify-content: center; */
  text-align: left;
  display: block;
  width: 100%;
}
.comming_wrap .comming_text {
  margin: 0;
  font-size: 24px;
  font-family: "HelveticaNeue-CondensedBlack", Helvetica, Arial, "YuGothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 40px 0;
  letter-spacing: 0;
  color: #b6b6b6;
  text-align: left;
  padding-top: 0;
  font-size: 30px;
  font-size: 3rem;
}
@media (max-width: 767px) {
  #after_movie .inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.p-top-kv .iframe_wrap {
  aspect-ratio: 16 / 9;
  position: relative;
}
.p-top-kv .iframe_wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-top-kv .caption {
  position: absolute;
  bottom: -15px;
  font-weight: 500;
}
#after_movie .flex {
  display: flex;
  align-items: center;
}
#after_movie .movie_wrap {
  width: 60%;
}
#after_movie .text {
  width: 40%;
  padding-left: 40px;
  color: #fff;
}
#after_movie .text h6 {
  font-size: 12px;
  font-weight: bolder;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
#after_movie .text .jp {
  line-height: 2;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  line-height: 2.5;
}
#after_movie .text .en {
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 40px;
}
#after_movie.photo {
}
#after_movie.photo .img {
  width: 60%;
}
#after_movie.photo .img img {
  width: 100%;
}
#after_movie.photo .c-button a {
  width: 100%;
  color: #fff;
  border-color: #fff;
  transition: 0.3s;
  letter-spacing: 0.2em;
  font-size: 12px;
}
#after_movie.photo .c-button a:hover {
  border-color: #111;
}
#after_movie.photo .c-button {
  margin-top: 0;
  /* margin-bottom: 30px; */
}
#after_movie.photo .c-button.sp{
  display: none;
}
#after_movie.photo .text {
  padding-right: 40px;
  padding-left: 0;
}
#after_movie.photo .text .jp {
  font-size: 10px;
}
@media (max-width: 767px) {
  #after_movie .flex {
    display: block;
  }
  #after_movie .movie_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
  #after_movie .text {
    padding: 0;
    width: 100%;
  }
  #after_movie .text .jp{
    font-size: 11px;
    /* line-height: 2.5; */
  }
  #after_movie .text h6{
    font-size: 10px;
    margin-bottom: 15px;
  }
  #after_movie.photo .img {
    width: 100%;
    margin-bottom: 20px;
  }
  #after_movie.photo .c-button.sp{
    display: block;
    margin-bottom: 40px;
}
  #after_movie.photo .c-button.sp a{
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  #after_movie.photo .c-button.pc{
    display: none;
}
  #after_movie.photo .text {
    padding: 0;
    margin-bottom: 20px;
  }
}

#aftermovie{
  max-width: 880px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 0 20px;
}
#aftermovie .iframe_wrap{
    /* max-width: 1000px; */
    /* margin: auto; */
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 10px;
}

#aftermovie .iframe_wrap iframe{
    position: absolute;
    width: 100%;
    height: 100%;
}
#aftermovie p{font-size: 14px;}
