@charset "UTF-8";
/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: "lightcase";
  src: url("/img/common/lightcase/lightcase.eot?55356177");
  src: url("/img/common/lightcase/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("/img/common/lightcase/lightcase.woff?55356177") format("woff"), url("/img/common/lightcase/lightcase.ttf?55356177") format("truetype"), url("/img/common/lightcase/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*=lightcase-icon-]:before {
  font-family: "lightcase", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: "\e800";
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: "\e801";
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close {
  width: 40px !important;
}
@media screen and (min-width: 769px) {
  .lightcase-icon-close {
    right: 30px !important;
    top: 30px !important;
    width: 80px !important;
  }
}

.lightcase-icon-close:before {
  content: "";
  height: 40px;
  width: 40px;
  background: url("../img/common/ico/ico_close_black.svg") 0 0/100% auto no-repeat;
}
@media screen and (min-width: 769px) {
  .lightcase-icon-close:before {
    height: 80px;
    width: 80px;
  }
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: "\e803";
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: "\e804";
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: "\e805";
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 9002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case,
html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}
@media screen and (min-width: 769px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 769px) {
  /* line 23, ../scss/components/modules/_content.scss */
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }

  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 768px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}
/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
}

@media screen and (max-width: 768px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 769px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1,
#lightcase-content h2,
#lightcase-content h3,
#lightcase-content h4,
#lightcase-content h5,
#lightcase-content h6,
#lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 769px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1,
#lightcase-content h2,
#lightcase-content h3,
#lightcase-content h4,
#lightcase-content h5,
#lightcase-content h6,
#lightcase-content p {
    color: #333;
  }
}
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 769px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}
/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}
/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading,
#lightcase-loading:focus {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  -webkit-tap-highlight-color: transparent;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-],
a[class*=lightcase-icon-]:focus {
  text-decoration: none;
  color: white;
  -webkit-tap-highlight-color: transparent;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-] > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-]:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*=lightcase-icon-]:hover {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: none;
}

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-prev {
  left: 15px;
}

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-next {
  right: 15px;
}

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-pause,
a[class*=lightcase-icon-].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 769px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-].lightcase-icon-pause,
a[class*=lightcase-icon-].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 769px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-]:hover,
#lightcase-case:hover ~ a[class*=lightcase-icon-] {
    opacity: 1;
  }
}
/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 9000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}
#lightcase-overlay.-active {
  display: block;
}

@media screen and (max-width: 768px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 0.9 !important;
  }
}
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Correct the inheritance of border color in Firefox.
  * 2. Add the correct box sizing in Firefox.
  * 3. Show the overflow in Edge 18- and IE.
  */
hr {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
  overflow: visible;
  /* 3 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
nav li::before {
  content: "​";
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  * 3. Prevent overflow of the container in all browsers (opinionated).
  */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
  /* 3 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * 1. Collapse border spacing in all browsers (opinionated).
  * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
  * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
  */
table {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
  resize: block;
  /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * Remove the tapping delay in IE 10.
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@-webkit-keyframes ttlfadeIn {
  0% {
    -webkit-mask-position: -200vw, 0;
            mask-position: -200vw, 0;
  }
  100% {
    -webkit-mask-position: 0, 0;
            mask-position: 0, 0;
  }
}

@keyframes ttlfadeIn {
  0% {
    -webkit-mask-position: -200vw, 0;
            mask-position: -200vw, 0;
  }
  100% {
    -webkit-mask-position: 0, 0;
            mask-position: 0, 0;
  }
}
@-webkit-keyframes flowerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #323232;
  font-family: "YakuHanJP_Noto", "Noto Sans JP", "Hiragino Kaku Gothic Pro W3", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}
body.-fade {
  opacity: 0;
}

img {
  height: 100%;
  width: 100%;
}

button {
  cursor: pointer;
  display: block;
  outline: none;
}

iframe[name=google_conversion_frame] {
  position: absolute;
  height: 0;
}

a {
  cursor: pointer;
}

/* sanitize overwrite */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a:focus {
  outline: none;
}

main {
  display: block;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-family: initial;
}

nav li:before {
  content: "";
  display: none;
}

@-webkit-keyframes fall {
  to {
    top: 120%;
  }
}

@keyframes fall {
  to {
    top: 120%;
  }
}
@-webkit-keyframes sway1pc {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(200px) rotate(-45deg);
  }
}
@keyframes sway1pc {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(200px) rotate(-45deg);
  }
}
@-webkit-keyframes sway2pc {
  0% {
    transform: translateX(180px) rotate(-55deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway2pc {
  0% {
    transform: translateX(180px) rotate(-55deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes sway3pc {
  0% {
    transform: translateX(150px) rotate(-70deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway3pc {
  0% {
    transform: translateX(150px) rotate(-70deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes sway1sp {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(20px) rotate(-45deg);
  }
}
@keyframes sway1sp {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    transform: translateX(20px) rotate(-45deg);
  }
}
@-webkit-keyframes sway2sp {
  0% {
    transform: translateX(50px) rotate(-45deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway2sp {
  0% {
    transform: translateX(50px) rotate(-45deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes sway3sp {
  0% {
    transform: translateX(40px) rotate(-45deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway3sp {
  0% {
    transform: translateX(40px) rotate(-45deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
.l-bgflower {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: none;
  transition: all 1s;
  visibility: visible;
  height: 100%;
  width: 100%;
  z-index: 4;
}
.l-bgflower.-floweroff {
  opacity: 0;
  visibility: hidden;
}
.l-bgflower__top {
  transition: all 1s;
}
.l-bgflower__top.-floweroff {
  opacity: 0;
  visibility: hidden;
}

.l-bgflower__item {
  position: absolute;
  top: -80px;
}
.l-bgflower__item.-item1 {
  left: 0%;
  -webkit-animation: fall 10s linear infinite;
          animation: fall 10s linear infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item1 {
    height: 32px;
    width: 41px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item1 {
    height: 47px;
    width: 60px;
  }
}
.l-bgflower__item.-item2 {
  left: 15%;
  -webkit-animation: fall 14s linear infinite;
          animation: fall 14s linear infinite;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item2 {
    height: 19px;
    width: 20px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item2 {
    height: 41px;
    width: 42px;
  }
}
.l-bgflower__item.-item3 {
  left: 63%;
  -webkit-animation: fall 20s linear infinite;
          animation: fall 20s linear infinite;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item3 {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item3 {
    height: 49px;
    width: 50px;
  }
}
.l-bgflower__item.-item4 {
  left: 75%;
  -webkit-animation: fall 8s linear infinite;
          animation: fall 8s linear infinite;
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item4 {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item4 {
    height: 36px;
    width: 37px;
  }
}
.l-bgflower__item.-item5 {
  left: 90%;
  -webkit-animation: fall 15s linear infinite;
          animation: fall 15s linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item5 {
    height: 25px;
    width: 25px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item5 {
    height: 32px;
    width: 41px;
  }
}
.l-bgflower__item.-item6 {
  left: 20%;
  -webkit-animation: fall 35s linear infinite;
          animation: fall 35s linear infinite;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item6 {
    height: 30px;
    width: 30px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item6 {
    height: 30px;
    width: 30px;
  }
}
.l-bgflower__item.-item7 {
  left: 30%;
  -webkit-animation: fall 20s linear infinite;
          animation: fall 20s linear infinite;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item7 {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item7 {
    height: 36px;
    width: 37px;
  }
}
.l-bgflower__item.-item8 {
  left: 40%;
  -webkit-animation: fall 12s linear infinite;
          animation: fall 12s linear infinite;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
@media (max-width: 768px) {
  .l-bgflower__item.-item8 {
    height: 25px;
    width: 25px;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item.-item8 {
    height: 20px;
    width: 20px;
  }
}

.l-bgflower__item__hana {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .l-bgflower__item__hana.-sway1 {
    -webkit-animation: sway1sp 3.5s ease-in-out infinite alternate;
            animation: sway1sp 3.5s ease-in-out infinite alternate;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item__hana.-sway1 {
    -webkit-animation: sway1pc 3.5s ease-in-out infinite alternate;
            animation: sway1pc 3.5s ease-in-out infinite alternate;
  }
}
@media (max-width: 768px) {
  .l-bgflower__item__hana.-sway2 {
    -webkit-animation: sway2sp 3s ease-in-out infinite alternate;
            animation: sway2sp 3s ease-in-out infinite alternate;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item__hana.-sway2 {
    -webkit-animation: sway2pc 4s ease-in-out infinite alternate;
            animation: sway2pc 4s ease-in-out infinite alternate;
  }
}
@media (max-width: 768px) {
  .l-bgflower__item__hana.-sway3 {
    -webkit-animation: sway3sp 5s ease-in-out infinite alternate;
            animation: sway3sp 5s ease-in-out infinite alternate;
  }
}
@media (min-width: 769px) {
  .l-bgflower__item__hana.-sway3 {
    -webkit-animation: sway3pc 5s ease-in-out infinite alternate;
            animation: sway3pc 5s ease-in-out infinite alternate;
  }
}
.-item1 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_3.png) no-repeat top right/contain;
}
.-item2 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_4.png) no-repeat top right/contain;
}
.-item3 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_5.png) no-repeat top right/contain;
}
.-item4 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_6.png) no-repeat top right/contain;
}
.-item5 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_7.png) no-repeat top right/contain;
}
.-item6 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_8.png) no-repeat top right/contain;
}
.-item7 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_9.png) no-repeat top right/contain;
}
.-item8 .l-bgflower__item__hana {
  background: url(../img/common/deco/deco_hanabira_4.png) no-repeat top right/contain;
}

.l-main {
  position: relative;
}
@media (min-width: 769px) {
  .l-main {
    min-width: 870px;
  }
}

.l-content {
  background-color: #091039;
  position: relative;
  width: 100%;
}

.l-main__loading {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: #fff;
  transition: 1.5s;
  opacity: 1;
  height: 100%;
  width: 100%;
  z-index: 4;
}
.-onload .l-main__loading {
  opacity: 0;
}

.l-main__content {
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .l-main__content {
    background: url(../img/common/bg_ptn_03.png) top center / 56px repeat;
    padding: 0 0 10vw 0;
  }
}
@media (min-width: 769px) {
  .l-main__content {
    background: url(../img/common/bg_ptn_03.png) top center / 56px repeat;
  }
}

.l-main__inner {
  position: relative;
}

.l-main__content__ribbon {
  display: block;
}
@media (max-width: 768px) {
  .l-main__content__ribbon {
    position: absolute;
    left: 0;
    bottom: 1.3vw;
    background: url(../img/common/bg_ribbon_nrw.png) repeat top left/100%;
    height: 49.3vw;
    width: 16.5vw;
  }
}
@media (min-width: 769px) {
  .l-main__content__ribbon {
    position: absolute;
    left: 0;
    bottom: 0.5vw;
    background: url(../img/common/bg_ribbon_wid.png) repeat top left/100%;
    height: 16.1vw;
    width: 25.5vw;
  }
}

.l-footer {
  background: #fff;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 20px 10px;
  }
}
@media (min-width: 769px) {
  .l-footer {
    padding: 40px 0;
  }
}
.about .l-footer {
  background: #f4f4f8;
}
.l-footer__logo {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-footer__logo {
    width: 220px;
  }
}
@media (min-width: 769px) {
  .l-footer__logo {
    width: 330px;
  }
}
@media (max-width: 768px) {
  .l-footer__download {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .l-footer__download {
    margin: 6px 0 26px;
  }
}
.footer__links{
  margin-bottom: 2vw;
}
.footer__links__item {
  background: url('../img/common/item_mark_gold.png') no-repeat right center;
  -webkit-background-size: 11px;
  background-size: 11px;
  display: inline-block;
  letter-spacing: 0;
  padding: 5px 28px 5px 14px;
}
.footer__links__link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 4px 0;
  position: relative;
}
@media (hover: hover) {
  .footer__links__link::after {
    background-color: #fff;
    bottom: -2px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
    width: 0%;
  }
  .footer__links__link:hover::after {
    width: 100%;
  }
}
.footer__links__item:last-child {
  background: none;
  padding: 5px 14px 5px 14px;
}
@media (max-width: 768px) {
  .footer__links {
    border-top: 1px solid #e8e4be;
    margin-bottom: 7vw;
  }
  .footer__links__item {
    display: block;
    background: none;
    border-bottom: 1px solid #e8e4be;
    padding: 2vw;
  }
  .footer__links__item:last-child {
    padding: 2vw;
  }
  .footer__links__link {
    background: transparent url('../img/common/arrow.png') no-repeat 100% center;
    background-size: 2vw;
    color: #fff;
    display: block;
    font-size: 3vw;
    height: 100%;
    letter-spacing: 0.02em;
    padding: 1vw 0;
    text-decoration: none;
    width: 100%;
  }
  .footer__notice {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 33px;
  }
}
.footer__text {
  font-size: 0.8rem;
}


.hamburger {
  position: fixed;
  z-index: 3;
}
@media (max-width: 768px) {
  .hamburger {
    right: 5px;
    top: 10px;
  }
}
@media (min-width: 769px) {
  .hamburger {
    right: 30px;
    top: 40px;
  }
}
@media (hover: hover) {
  .hamburger:hover .btn-line.-line1 {
    transform: translateY(10px) rotate(-45deg);
  }
  .hamburger:hover .btn-line.-line2 {
    opacity: 0;
  }
  .hamburger:hover .btn-line.-line3 {
    transform: translateY(-10px) rotate(45deg);
  }
}
.hamburger__btn {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .hamburger__btn {
    background: url(../img/common/nav/ico_nav_nrw.svg) repeat-y top right/cover;
    height: 63.5px;
    width: 67.5px;
  }
}
@media (min-width: 769px) {
  .hamburger__btn {
    background: url(../img/common/nav/ico_nav.svg) repeat-y top right/cover;
    height: 100px;
    width: 106px;
  }
}
.-open .hamburger__btn {
  background: none;
  filter: none;
}
.hamburger__btn__close {
  display: none;
  transition: all 0.1s;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .hamburger__btn__close {
    background: url(../img/common/btn_close.svg) no-repeat top 15px center/20px 20px;
  }
}
@media (min-width: 769px) {
  .hamburger__btn__close {
    background: url(../img/common/btn_close.svg) no-repeat top 20px center/31px 31px;
  }
}
.-open .hamburger__btn__close {
  display: block;
}
@media (hover: hover) {
  .hamburger__btn__close:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
.hamburger__btn .btn-line {
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}
@media (max-width: 768px) {
  .hamburger__btn .btn-line {
    display: none;
  }
}
@media (min-width: 769px) {
  .hamburger__btn .btn-line {
    height: 3px;
  }
}
.hamburger__btn .btn-line.-line1 {
  background: url(../img/common/nav/btn_line1.svg) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .hamburger__btn .btn-line.-line1 {
    top: 15px;
    left: 21px;
    width: 22.5px;
  }
}
@media (min-width: 769px) {
  .hamburger__btn .btn-line.-line1 {
    top: 24px;
    left: 34px;
    width: 36px;
  }
}
.hamburger__btn .btn-line.-line2 {
  background: url(../img/common/nav/btn_line2.svg) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .hamburger__btn .btn-line.-line2 {
    top: 22px;
    left: 20px;
    width: 27px;
  }
}
@media (min-width: 769px) {
  .hamburger__btn .btn-line.-line2 {
    top: 34.3px;
    left: 32px;
    width: 42.3px;
  }
}
.hamburger__btn .btn-line.-line3 {
  background: url(../img/common/nav/btn_line3.svg) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .hamburger__btn .btn-line.-line3 {
    top: 30px;
    left: 22px;
    width: 22.5px;
  }
}
@media (min-width: 769px) {
  .hamburger__btn .btn-line.-line3 {
    top: 45px;
    left: 34px;
    width: 36px;
  }
}

.-open .btn-line {
  display: none;
}

.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.2s;
  overflow-y: auto;
  overflow-x: visible;
  position: fixed;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-nav {
    padding-left: 12.5px;
    width: 200px;
  }
}
@media (min-width: 769px) {
  .l-nav {
    padding-left: 20px;
    width: 315px;
  }
}
.l-nav.-ioschrome {
  transition: none;
}
.l-nav.-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.l-nav__inner {
  /* background: rgb(13 187 189 / 0.95); */
  background: rgb(92 206 38 / 95%);
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .l-nav__inner {
    padding: 64px 0 64px 15px;
  }
}
@media (min-width: 769px) {
  .l-nav__inner {
    min-height: 800px;
    padding: 80px 0 80px 50px;
  }
}

@media (max-width: 768px) {
  .l-nav__inner::before {
    position: absolute;
    top: 0px;
    left: -12.5px;
    width: 12.5px;
  }
}
@media (min-width: 769px) {
  .l-nav__inner::before {
    position: absolute;
    top: 0px;
    left: -20px;
    transform: rotate(0deg);
    width: 20px;
  }
}
.l-nav__btn {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .l-nav__btn {
    width: 70px;
  }
}
@media (min-width: 769px) {
  .l-nav__btn {
    width: 106px;
  }
}
.l-nav__item {
  display: block;
}
.l-nav__item__txt {
  color: #ffffff;;
  font-weight: 800;
  letter-spacing: -0.05em;
  position: relative;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .l-nav__item__txt {
    font-size: 1rem;
    margin-left: 17px;
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .l-nav__item__txt {
    font-size: 1.25rem;
    margin-left: 23px;
    margin-top: 50px;
  }
}
.l-nav__item__txt::before {
  content: "";
  background: url(../img/common/deco_flower.png) top center/contain no-repeat;
  transition: all 0.2s;
  transform-origin: center;
}
@media (max-width: 768px) {
  .l-nav__item__txt::before {
    position: absolute;
    top: 7px;
    left: -15px;
    height: 13px;
    width: 13px;
  }
}
@media (min-width: 769px) {
  .l-nav__item__txt::before {
    position: absolute;
    top: 8px;
    left: -30px;
    transform: rotate(0deg);
    height: 21px;
    width: 21px;
  }
}
@media (hover: hover) {
  .l-nav__item__txt:hover {
    color: rgb(255, 245, 108);
  }
  .l-nav__item__txt:hover::before {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .l-nav__share {
    margin-top: 32px;
  }
}
@media (min-width: 769px) {
  .l-nav__share {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .l-nav__share__txt {
    width: 46px;
  }
}
@media (min-width: 769px) {
  .l-nav__share__txt {
    width: 60px;
  }
}
.l-nav__share__icon {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-nav__share__icon {
    margin-top: 10px;
    width: 142px;
  }
  .l-nav__share__facebook {
    margin-right: 30px;
    width: 28px;
  }
  .l-nav__share__twitter {
    margin-right: 30px;
    width: 28px;
  }
  .l-nav__share__line {
    width: 28px;
  }
}
@media (min-width: 769px) {
  .l-nav__share__icon {
    margin-top: 26px;
    width: 206px;
  }
  .l-nav__share__facebook {
    margin-right: 45px;
    width: 38px;
  }
  .l-nav__share__twitter {
    margin-right: 45px;
    width: 38px;
  }
  .l-nav__share__line {
    width: 38px;
  }
}

.l-side {
  position: fixed;
  right: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-side {
    top: 123px;
  }
}
@media (min-width: 769px) {
  .l-side {
    top: 200px;
  }
}
@media (max-width: 768px) {
  .l-side__inner {
    width: 38px;
  }
}
@media (min-width: 769px) {
  .l-side__inner {
    /* width: 77px; */
    position: relative;
    width: 297px;
  }
}
.l-side__startbtn {
  background: url(../img/common/btn_start.svg) no-repeat top center/contain;
  filter: drop-shadow(-3px -3px 5px rgba(0, 0, 0, 0.2));
  display: block;
  transition: all 0.2s;
  width: 100%;
}
@media (max-width: 768px) {
  .l-side__startbtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 130px;
    width: 38px;
  }
}
@media (min-width: 769px) {
  .l-side__startbtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 267px;
    width: 77px;
    float: right;
  }
}
@media (hover: hover) {
  .l-side__startbtn:hover {
    filter: drop-shadow(-3px -3px 5px rgba(0, 0, 0, 0.2)) brightness(1.2);
  }
}
@media (hover: none) {
  .l-side__startbtn:active {
    filter: drop-shadow(-3px -3px 5px rgba(0, 0, 0, 0.2)) brightness(1.2);
  }
}
.l-side__dlbtn {
  background: url(../img/common/btn_dl.svg) no-repeat top center/contain;
  filter: drop-shadow(-3px -3px 5px rgba(0, 0, 0, 0.2));
  display: block;
  transition: all 0.3s;
  width: 100%;
}
@media (max-width: 768px) {
  .l-side__dlbtn {
    position: absolute;
    top: 140px;
    right: 0;
    height: 130px;
    width: 38px;
  }
}
@media (min-width: 769px) {
  .l-side__dlbtn {
    position: absolute;
    top: 280px;
    right: 0;
    height: 267px;
    width: 77px;
    float: right;
  }
}
.l-side__dlbtn__btn {
  position: relative;
  transition: all 0.2s;
}
.-btnactive .l-side__dlbtn__btn:after {
  transition: all 0.2s;
}
@media (min-width: 769px) {
  .-btnactive .l-side__dlbtn__btn:after {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: btnslideIn 0.2s forwards;
            animation: btnslideIn 0.2s forwards;
    content: "";
    background: url(../img/common/btn_dlqr.png) no-repeat top center/contain;
    opacity: 1;
    height: 267px;
    width: 297px;
  }
}
@media (hover: hover) {
  .l-side__dlbtn:hover {
    filter: drop-shadow(-3px -3px 5px rgba(0, 0, 0, 0.2)) brightness(1.2);
  }
}

@-webkit-keyframes btnslideIn {
  0% {
    opacity: 0;
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes btnslideIn {
  0% {
    opacity: 0;
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-arwbtn {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}
@media (min-width: 769px) {
  .c-arwbtn {
    width: 14px;
    height: 14px;
  }
}
.c-arwbtn:before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, 0) rotate(45deg);
  transform-origin: 100% 0;
  content: "";
  width: 50%;
  height: 1px;
  background: #959595;
}
.c-arwbtn:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  width: 100%;
  height: 1px;
  background: #959595;
}
.c-arwbtn.-bk:after, .c-arwbtn.-bk:before {
  background: #000;
}

.c-download {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .c-download {
    margin: 0 auto 7vw;
    width: 300px;
  }
}
.c-download__appstore, .c-download__googleplay {
  display: block;
}
@media (max-width: 768px) {
  .c-download__appstore, .c-download__googleplay {
    height: 47px;
  }
}
@media (min-width: 769px) {
  .c-download__appstore, .c-download__googleplay {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .c-download__appstore {
    margin-right: 8px;
  }
}
@media (min-width: 769px) {
  .c-download__appstore {
    margin-right: 13px;
  }
}

.c-f_stencil {
  font-family: stencil-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.c-hover_op {
  transition: opacity 0.3s 0s ease;
}
.c-hover_op:active {
  opacity: 1!important;
}
@media (hover: hover) {
  .c-hover_op:hover { opacity: 0.75; }
}

.c-inner {
  margin: 0 21.3vw 0 5.3vw;
  color: #fff;
}
@media (min-width: 769px) {
  .c-inner {
    margin: 0 96px;
    max-width: 766px;
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
  transition: all 1s 0s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  pointer-events: none;
}
.c-modal.-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-modal__close {
  position: fixed;
  top: 35px;
  right: 35px;
  width: 50px;
  height: 50px;
}
@media (min-width: 769px) {
  .c-modal__close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
  }
}
.c-modal__close:before, .c-modal__close:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-share {
  text-align: center;
}
.c-share__txt {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-share__txt {
    width: 12.5vw;
  }
}
@media (min-width: 769px) {
  .c-share__txt {
    width: 60px;
  }
}
.c-share__icon {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-share__icon {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .c-share__icon {
    margin-top: 26px;
  }
}
@media (max-width: 768px) {
  .c-share__facebook {
    margin-right: 8vw;
    width: 7.2vw;
  }
}
@media (min-width: 769px) {
  .c-share__facebook {
    margin-right: 45px;
    width: 38px;
  }
}
@media (max-width: 768px) {
  .c-share__twitter {
    margin-right: 8vw;
    width: 7.4vw;
  }
}
@media (min-width: 769px) {
  .c-share__twitter {
    margin-right: 45px;
    width: 39px;
  }
}
@media (max-width: 768px) {
  .c-share__line {
    width: 7.2vw;
  }
}
@media (min-width: 769px) {
  .c-share__line {
    width: 38px;
  }
}

.c-visible_nrw {
  display: block;
}
@media (min-width: 769px) {
  .c-visible_nrw {
    display: none;
  }
}

@media (max-width: 768px) {
  .c-visible_wide {
    display: none;
  }
}

/* ----------------------------------- */
/* benefits*/
/* ----------------------------------- */
.benefits {
  overflow: hidden;
  position: relative;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .benefits {
    background: url(../img/benefits/bg_nrw.png) repeat-y top center/100% auto;
    padding: 14vw 0;
  }
}
@media (min-width: 769px) {
  .benefits {
    background: url(../img/benefits/bg_wid.png) repeat-y top center/100% auto;
    padding: 8vw 0;
  }
}
.benefits__top {
  -webkit-mask-image: url(../img/common/mask_bg.png);
          mask-image: url(../img/common/mask_bg.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: -200vw, 0;
          mask-position: -200vw, 0;
  -webkit-mask-size: 200vw auto;
          mask-size: 200vw auto;
}
@media (max-width: 768px) {
  .benefits__top.-active {
    -webkit-animation: ttlfadeIn 1s forwards;
            animation: ttlfadeIn 1s forwards;
  }
}
@media (min-width: 769px) {
  .benefits__top.-active {
    -webkit-animation: ttlfadeIn 1s forwards;
            animation: ttlfadeIn 1s forwards;
  }
}
.benefits__ttl {
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .benefits__ttl {
    line-height: 3.5vw;
    width:  68.6vw;
  }
}
@media (min-width: 769px) {
  .benefits__ttl {
    width: 495px;
  }
}
.benefits__ttl:after {
  position: absolute;
  left: 50%;
  bottom: -1px;
  content: "";
  transform: translateX(-50%);
}


@media (max-width: 768px) {
  .benefits__catch {
    margin: 2.8vw auto 0;
    width: 72.5vw;
  }
}
@media (min-width: 769px) {
  .benefits__catch {
    margin: 28px auto;
    width: 634px;
  }
}
.benefits__bnr {
  display: block;
}
@media (max-width: 768px) {
  .benefits__bnr {
    margin: 3.2vw auto 0;
    width: 87.2vw;
  }
}
@media (min-width: 769px) {
  .benefits__bnr {
    margin: 27px auto;
    width: 660px;
  }
}
@media (max-width: 768px) {
  .benefits__base {
    margin: 9vw auto 0;
  }
}
@media (min-width: 769px) {
  .benefits__base {
    margin: 70px auto 0;
  }
}
.benefits__base__ttl {
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .benefits__base__ttl {
    background: url(../img/benefits/bg_txt_nrw.png) no-repeat top center/contain;
    width: 100%;
    height: 27vw;
    text-align: center;
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .benefits__base__ttl {
    background: url(../img/benefits/bg_txt_wid.png) no-repeat top center/contain;
    height: 111px;
    width: 912px;
  }
}
.benefits__base__ttl__txt {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .benefits__base__ttl__txt {
    width: 84vw;
    margin: 0;
    padding: 2px 0 12px!important;
  }
}
@media (min-width: 769px) {
  .benefits__base__ttl__txt {
    width: 629px;
  }
}
.benefits__base__ttl__offer {
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .benefits__base__ttl__offer {
    font-size: 2.3vw;
    margin-top: -2vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__ttl__offer {
    font-size: 0.75rem;
  }
}
.benefits__base__cont {
  display: flex;
  justify-content: center;
}
.benefits__base__cont.movie {
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 768px) {
  .benefits__base__cont {
    margin-top: 3vw;
  }
  .benefits__base__cont.movie {
    margin: 4vw auto;
    column-gap: 3vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__cont {
    margin: 30px;
  }
}

.tiktok__movie__cont {
  display: block;
  width: 660px;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .tiktok__movie__cont {
    width: 87.7vw;
    margin-top: 3.2vw;
  }
}
@media (min-width: 769px) {
  .tiktok__movie__cont {
    margin-top: 30px;
  }
}

.benefits__base__txt {
  font-weight: bold;
}
@media (max-width: 768px) {
  .benefits__base__txt {
    font-size: 3vw;
    line-height: 1.84em;
    letter-spacing: -0.05em;
  }
}
@media (min-width: 769px) {
  .benefits__base__txt {
    font-size: 1.25rem;
    line-height: 2.2em;
  }
}
.tiktok__movie__txt {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.6em;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .tiktok__movie__txt {
    font-size: 1rem;
    line-height: 1.5em;
  }
}
.benefits__base__txt span {
  font-size: 1.25em;
  color: #f63e72;
}
.benefits__base__spe {
  display: inline-block;
}
@media (max-width: 768px) {
  .benefits__base__spe img {
    margin: -0.8vw 0.5vw 0 0.5vw;
    height: 4.9vw;
    width: 23.4vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__spe img {
    margin: -6px 2px 0 2px;
    height: 22px;
    width: 119px;
  }
}
.benefits__base__experi {
  display: inline-block;
}
@media (max-width: 768px) {
  .benefits__base__experi img {
    margin: -0.5vw 0.5vw 0 0.5vw;
    height: 5.3vw;
    width: 47.3vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__experi img {
    margin: -6px 2px 0 2px;
    height: 23px;
    width: 256px;
  }
}
@media (max-width: 768px) {
  .benefits__base__ph {
    width: 36vw;
  }
  .benefits__base__ph.movie {
    width: 50vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__ph.movie {
    width: 400px;
  }
}
.benefits__base__date {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2vw 2vw 0;
}
@media (max-width: 768px) {
  .benefits__base__date__ttl {
    width: 16vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__date__ttl {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .benefits__base__date__date {
    margin-left: 2.2vw;
    width: 52.5vw;
  }
}
@media (min-width: 769px) {
  .benefits__base__date__date {
    margin-left: 15px;
    width: 376px;
  }
}
.benefits__base__offer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .benefits__base__offer {
    margin-bottom: -6vw;
  }
}
.benefits__download {
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .benefits__download {
    background: url(../img/benefits/bg_dl_nrw.png) no-repeat top center/contain;
    margin: 2.6vw auto 0;
    padding-top: 4vw;
    height: 101.8vw;
    width: 100vw;
  }
}
@media (min-width: 769px) {
  .benefits__download {
    background: url(../img/benefits/bg_dl_wid.png) no-repeat top center/contain;
    margin: 60px auto 0;
    padding-top: 25px;
    height: 764px;
    width: 940px;
  }
}
@media (min-width: 769px) and (max-width: 940px) {
  .benefits__download {
    height: 81.2vw;
  }
}
.benefits__download__ttl {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .benefits__download__ttl {
    margin-top: -2.7vw;
    width: 89.3vw;
  }
}
@media (min-width: 769px) {
  .benefits__download__ttl {
    margin-top: -19px;
    background: url(../img/benefits/bg_txt_wid.png) no-repeat top center/contain;
    padding-top: 8px;
    height: 159px;
    width: 941px;
}
  }

.benefits__download__txt {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .benefits__download__txt {
    font-size: 2.3vw;
    margin-top: -1.4vw;
  }
}
@media (min-width: 769px) {
  .benefits__download__txt {
    font-size: 0.75rem;
    margin-top: -20px;
  }
}
.benefits__download__ph {
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .benefits__download__ph {
    bottom: 4vw;
    width: 100vw;
  }
}
@media (min-width: 769px) {
  .benefits__download__ph {
    bottom: 8px;
    width: 1390px;
  }
}
@media (min-width: 769px) and (max-width: 940px) {
  .benefits__download__ph {
    bottom: 0.8vw;
    width: 147.8vw;
  }
}
.benefits__download__btn {
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .benefits__download__btn {
    background: url(../img/benefits/btn_dl_wid.png) no-repeat top center/contain;
    margin-top: 3vw;
    height: 12vw;
    width: 70.6vw;
  }
}
@media (min-width: 769px) {
  .benefits__download__btn {
    background: url(../img/benefits/btn_dl_wid.png) no-repeat top center/contain;
    margin-top: 0;
    height: 80px;
    width: 471px;
  }
}
@media (hover: hover) {
  .benefits__download__btn:hover {
    filter: brightness(1.1);
  }
}
@media (min-width: 769px) {
  .benefits__download__btn.c-visible_wide {
    display: block;
  }
}
@media (max-width: 768px) {
  .benefits__about {
    margin: 8.6vw auto 0;
  }
}
@media (min-width: 769px) {
  .benefits__about {
    margin: 70px auto 0;
  }
}
.benefits__about__txt {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .benefits__about__txt {
    width: 63.3vw;
  }
}
@media (min-width: 769px) {
  .benefits__about__txt {
    width: 330px;
  }
}
.benefits__about__btn {
  display: block;
  margin: 0 auto;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .benefits__about__btn {
    background: url(../img/benefits/btn_about.png) no-repeat top center/contain;
    height: 12vw;
    width: 70.6vw;
    margin-top: 3vw;
  }
}
@media (min-width: 769px) {
  .benefits__about__btn {
    background: url(../img/benefits/btn_about.png) no-repeat top center/contain;
    height: 80px;
    width: 471px;
  }
}
@media (hover: hover) {
  .benefits__about__btn:hover {
    filter: brightness(1.3);
  }
}

.benefits__bnrs {
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 20px;
}
@media (max-width: 768px) {
  .benefits__bnrs {
    margin: -6vw auto 3.2vw;
    width: 87.2vw;
    justify-content: center;
    row-gap: 1vw;
  }
}
@media (min-width: 769px) {
  .benefits__bnrs {
    width: 660px;
  }
}

.benefits__bnrs__item {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .benefits__bnrs__item {
    width: 69.6vw;
    height: 23vw;
  }
}
@media (min-width: 769px) {
  .benefits__bnrs__item {
    width: 320px;
  }
}
.benefits__bnrs__item a {
  display: block;
}

.benefits__topbtn {
  position: absolute;
  bottom: -3px;
}
@media (max-width: 768px) {
  .benefits__topbtn {
    right: 2.6vw;
    height: 10.6vw;
    width: 21.3vw;
  }
}
@media (min-width: 769px) {
  .benefits__topbtn {
    right: 60px;
    height: 71.5px;
    width: 143px;
  }
}
@media (max-width: 768px) {
  .benefits .c-share {
    margin: 10.4vw auto 0;
  }
}
@media (min-width: 769px) {
  .benefits .c-share {
    margin: 122px auto 0;
  }
}
.campaign {
  position: relative;
}
.cam01 {
  background: url(../img/common/bg_ptn_01.png) top center / 56px repeat;
}
.cam02 {
  background: url(../img/common/bg_ptn_02.png) top center / 56px repeat;
}
@media (max-width: 768px) {
  .campaign {
    padding: 9vw 0 0 0;
  }
}
@media (min-width: 769px) {
  .campaign {
    padding: 6vw 0 0 0;
  }
}
.campaign::after {
  position: absolute;
  bottom: -40px;
  right: 0;
  content: "";
  z-index: 1;
}


.campaign__inner {
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .campaign__inner {
    width: 87.7vw;
  }
}
@media (min-width: 769px) {
  .campaign__inner {
    width: 78.1vw;
  }
}
@media (min-width: 1200px) {
  .campaign__inner {
    width: 912px;
  }
}
.campaign__inner__bg {
  background: rgb(255 255 255 / 50%);
  padding: 1.8vw 0;
  border-top: solid 4px #fff;
  border-bottom: solid 4px #fff;
}
.campaign__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .campaign__bg {
    background: url(../img/campaign/bg_dot.png) scroll top center/3.3vw repeat;
  }
}

.messagemovie {
  width: 100%;
  text-align: center;
  background-image: url(../img/campaign/bg_movie_wid.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 768px) {
  .messagemovie {
    background-image: url(../img/campaign/bg_movie_nrw.png);
  }
}
.messagemovie div {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 24px;
}
@media (max-width: 768px) {
  .messagemovie div {
    padding: 3.2vw 0 2.6vw;
  }
}
.messagemovie_movie {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .messagemovie_movie {
    width: 54vw;
  }
}
.messagemovie_movie a {
  display: block;
}
.messagemovie_txt {
  width: 440px;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .messagemovie_txt {
    width: 64vw;
    margin-top: 0.4vw;
  }
}
.campaign__ttl {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .campaign__ttl {
    background: url(../img/campaign/bg_title.png) top center/2% 100% repeat-x;
    height: 37.8vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl {
    background: url(../img/campaign/bg_title.png) top center/auto 100% repeat-x;
    height: 15.5vw;
  }
}

.campaign__ttl__top {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .campaign__ttl__top {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .campaign__ttl__top::before {
    position: absolute;
    top: -2vw;
    left: 2.6vw;
    height: 5.7vw;
    width: 5.6vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl__top::before {
    position: absolute;
    top: -1.1vw;
    left: -0.6vw;
    height: 2.6vw;
    width: 2.6vw;
  }
}
.campaign__ttl__top__txt {
  margin: 0 auto;
  -webkit-mask-image: url(../img/common/mask_bg.png);
          mask-image: url(../img/common/mask_bg.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: -200vw, 0;
          mask-position: -200vw, 0;
  -webkit-mask-size: 200vw auto;
          mask-size: 200vw auto;
  line-height: 0;
}
@media (max-width: 768px) {
  .campaign__ttl__top__txt {
       width: 37.5vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl__top__txt {
    width: 14.2vw;
  }
}
@media (max-width: 768px) {
  .-onload .campaign__ttl__top__txt {
    -webkit-animation: ttlfadeIn 2s 1.4s forwards;
            animation: ttlfadeIn 2s 1.4s forwards;
  }
}
@media (min-width: 769px) {
  .-onload .campaign__ttl__top__txt {
    -webkit-animation: ttlfadeIn 4s 1s forwards;
            animation: ttlfadeIn 4s 1s forwards;
  }
}
.campaign__ttl__inner {
  -webkit-mask-image: url(../img/common/mask_bg.png);
          mask-image: url(../img/common/mask_bg.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: -200vw, 0;
          mask-position: -200vw, 0;
  -webkit-mask-size: 200vw auto;
          mask-size: 200vw auto;
}
@media (max-width: 768px) {
  .campaign__ttl__inner {
    margin-top: -2.6vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl__inner {
    margin-top: -0.82vw;
  }
}
@media (max-width: 768px) {
  .-onload .campaign__ttl__inner {
    -webkit-animation: ttlfadeIn 2s 1.6s forwards;
            animation: ttlfadeIn 2s 1.6s forwards;
  }
}
@media (min-width: 769px) {
  .-onload .campaign__ttl__inner {
    -webkit-animation: ttlfadeIn 3s 1.2s forwards;
            animation: ttlfadeIn 3s 1.2s forwards;
  }
}
.campaign__ttl__ttl {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .campaign__ttl__ttl {
    width: 74.7vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl__ttl {
    width: 28.3vw;
  }
}

@media (max-width: 768px) {
  .campaign__ttl__ttl::before {
    position: absolute;
    top: -2.7vw;
    left: -2.4vw;
    height: 6.1vw;
    width: 6vw;
  }
}


.campaign__ttl__num {
  display: block;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.2));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign__ttl__num {
    margin-top: -1.1vw;
    width: 30.6vw;
  }
}
@media (min-width: 769px) {
  .campaign__ttl__num {
    margin-top: -0.5vw;
    width: 10.7vw;
  }
}
@media (max-width: 768px) {
  .campaign__cont {
    margin-top: -8vw;
    margin-bottom: 8vw;
  }
}
@media (min-width: 769px) {
  .campaign__cont {
    margin-top: -6vw;
    margin-bottom: 3vw;
  }
}
.campaign__cont__txt {
  color: #42210b;
  font-weight: 800;
}
@media (max-width: 768px) {
  .campaign__cont__txt {
    font-size: 3.7vw;
    letter-spacing: -0.05em;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .campaign__cont__txt {
    font-size: 1.25rem;
    text-align: center;
  }
  .cam01 .campaign__cont__txt {
    line-height: 2;
  }
}
.campaign__cont__txt .color-pink {
  color: #f74f80;
}
.campaign__cont__txt .color-green {
  color: #2fa107;
}
.campaign__cont__txt a {
  color: #0084ff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .campaign__cont__txt .txt-strong {
    font-size: 5.3vw;
    line-height: 1.4em;
  }
}
@media (min-width: 769px) {
  .campaign__cont__txt .txt-strong {
    font-size: 2rem;
    line-height: 0.7em;
  }
}
@media (max-width: 768px) {
  .campaign__cont__txt .txt-strong-m {
    font-size: 4vw;
  }
}
@media (min-width: 769px) {
  .campaign__cont__txt .txt-strong-m {
    font-size: 1.625rem;
  }
}
.campaign__period {
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .campaign__period {
    margin-top: 2.6vw;
    width: 76.6vw;
  }
}
@media (min-width: 769px) {
  .campaign__period {
    margin-top: 30px;
    width: 614px;
  }
}

@media (max-width: 768px) {
  .prize {
    margin-top: 4.6vw;
  }
}
@media (min-width: 769px) {
  .prize {
    margin-top: 90px;
    width: 76vw;
  }
}
@media (min-width: 1200px) {
  .prize {
    width: 912px;
  }
}
.prize__item {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .prize__item {
    background: #fff;
    padding: 35px 35px 30px;
  }
}
@media (max-width: 768px) {
  .prize__item.-prizeb {
    margin-top: 5.6vw;
  }
}
@media (min-width: 769px) {
  .prize__item.-prizeb {
    padding: 35px 0 30px 35px;
    height: 541px;
    width: 39.2vw;
  }
}
@media (min-width: 1200px) {
  .prize__item.-prizeb {
    padding: 35px 0 30px 35px;
    height: 541px;
    width: 471px;
  }
}
@media (max-width: 768px) {
  .prize__item.-prizec {
    margin-top: 8.6vw;
  }
}
@media (min-width: 769px) {
  .prize__item.-prizec {
    padding: 35px 0 30px 35px;
    height: 541px;
    width: 32.5vw;
  }
}
@media (min-width: 1200px) {
  .prize__item.-prizec {
    padding: 35px 0 30px 35px;
    height: 541px;
    width: 391px;
  }
}
.prize__name {
  font-weight: 900;
  position: relative;
}
@media (max-width: 768px) {
  .prize__name__name {
    font-size: 4vw;
    line-height: 1.4em;
    letter-spacing: -0.05em;
    margin-top: 1.3vw;
  }
}
@media (min-width: 769px) {
  .prize__name__name {
    font-size: 1.25rem;
    line-height: 1.4em;
    letter-spacing: -0.05em;
    margin-top: 35px;
  }
}
.prize__name .prize-sub {
  font-weight: 400;
}
@media (max-width: 768px) {
  .prize__name .prize-sub {
    font-size: 3.4vw;
  }
}
@media (min-width: 769px) {
  .prize__name .prize-sub {
    font-size: 1rem;
  }
}
.prize__name .prize-offer {
  font-weight: 400;
}
@media (max-width: 768px) {
  .prize__name .prize-offer {
    font-size: 2.6vw;
  }
}
@media (min-width: 769px) {
  .prize__name .prize-offer {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .-prizea .prize__name {
    width: 52.5vw;
  }
}
@media (min-width: 769px) {
  .-prizea .prize__name {
    padding: 0 0 0 80px;
    width: 39vw;
  }
}
@media (min-width: 1200px) {
  .-prizea .prize__name {
    padding: 0 0 0 80px;
    width: 436px;
  }
}
@media (min-width: 769px) {
  .-prizeb .prize__name {
    padding: 0 0 0 80px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .-prizeb .prize__name::after {
    width: 34.6vw;
  }
}
@media (min-width: 769px) {
  .-prizec .prize__name {
    padding: 0 0 0 80px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .-prizec .prize__name::after {
    width: 53.3vw;
  }
}
.prize__name::after {
  position: absolute;
  top: 50px;
  left: 0px;
  content: "";
  background: url(../img/campaign/deco_prizeline.png) 0 0/auto 100% repeat-x;
  width: 100%;
}
@media (max-width: 768px) {
  .prize__name::after {
    top: 17.3vw;
    left: 6vw;
    height: 2.6vw;
  }
}
@media (min-width: 769px) {
  .prize__name::after {
    height: 14px;
  }
}
.prize__name__top {
  display: flex;
}
.prize__name__prize {
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
  z-index: 1;
}
@media (max-width: 768px) {
  .prize__name__prize {
    margin-left: -2vw;
    width: 24vw;
  }
}
@media (min-width: 769px) {
  .prize__name__prize {
    position: absolute;
    top: -45px;
    left: -60px;
    width: 128px;
  }
}
@media (max-width: 768px) {
  .-prizeb .prize__name__prize {
    margin-left: -4.8vw;
  }
}
@media (max-width: 768px) {
  .prize__name__num.-num10, .prize__name__num.-num50 {
    margin-left: 2.6vw;
    width: 16.1vw;
  }
}
@media (min-width: 769px) {
  .prize__name__num.-num10, .prize__name__num.-num50 {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .prize__name__num.-num100 {
    margin-left: 2.6vw;
    width: 20.6vw;
  }
}
@media (min-width: 769px) {
  .prize__name__num.-num100 {
    width: 130px;
  }
}
.prize__ph {
  flex-shrink: 0;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
  .-prizea .prize__ph {
    position: absolute;
    top: -1.4vw;
    right: -4vw;
    width: 44vw;
  }
}
@media (min-width: 769px) {
  .-prizea .prize__ph {
    position: absolute;
    top: -5vw;
    right: 3vw;
    width: 32.1vw;
  }
}
@media (min-width: 1200px) {
  .-prizea .prize__ph {
    position: absolute;
    top: -60px;
    right: 36px;
    width: 386px;
  }
}
@media (max-width: 768px) {
  .-prizeb .prize__ph {
    position: absolute;
    top: -2.7vw;
    left: -2.7vw;
    /* margin-top: getVW(-85);  */
    width: 50vw;
  }
}
@media (min-width: 769px) {
  .-prizeb .prize__ph {
    margin-top: -1.5vw;
    margin-left: -2.1vw;
    width: 36.6vw;
  }
}
@media (min-width: 1200px) {
  .-prizeb .prize__ph {
    margin-top: -17px;
    margin-left: -25px;
    width: 440px;
  }
}
.-prizec .prize__ph {
  z-index: 1;
}
@media (max-width: 768px) {
  .-prizec .prize__ph {
    position: absolute;
    top: 8vw;
    right: -3.4vw;
    width: 46.6vw;
  }
}
@media (min-width: 769px) {
  .-prizec .prize__ph {
    margin-top: 1.8vw;
    margin-left: -4vw;
    width: 34.1vw;
  }
}
@media (min-width: 1200px) {
  .-prizec .prize__ph {
    margin-top: 22px;
    margin-left: -47px;
    width: 410px;
  }
}

.campaign02 {
  position: relative;
}
.campaign02 .campaign__cont__txt {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign02 .campaign__cont__txt {
    width: 87.7vw;
  }
}
@media (min-width: 769px) {
  .campaign02 .campaign__cont__txt {
    width: 78.1vw;
  }
}
@media (min-width: 1200px) {
  .campaign02 .campaign__cont__txt {
    width: 912px;
  }
}
.campaign02 .campaign__cont__txt.txt-offer {
  position: relative;
}
@media (max-width: 768px) {
  .campaign02 .campaign__cont__txt.txt-offer {
    font-size: 2.7vw;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 2.5vw;
    max-width: 460px;
  }
}
@media (min-width: 769px) {
  .campaign02 .campaign__cont__txt.txt-offer {
    font-size: 0.75rem;
    padding-left: 15px;

  }
}

.campaign02 .rtitem__list {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign02 .rtitem__list {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .campaign02 .rtitem__list {
    width: 78.1vw;
  }
}
@media (min-width: 1200px) {
  .campaign02 .rtitem__list {
    width: 973px;
  }
}
.campaign02 .rtitem__item {
  width: 88%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .campaign02 .rtitem__item {
    margin-top: 5.4vw;
  }
}
@media (min-width: 769px) {
  .campaign02 .rtitem__item {
    margin-top: 2.2vw;
  }
}
@media (min-width: 1200px) {
  .campaign02 .rtitem__item {
    margin-top: 18px;
  }
}
.campaign02 .rtitem__item:first-child {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .campaign02 .rtitem__item:last-child {
    margin-top: 3.7vw;
  }
}
@media (min-width: 769px) {
  .campaign02 .rtitem__item:last-child {
    margin-top: 1.6vw;
  }
}
@media (min-width: 1200px) {
  .campaign02 .rtitem__item:last-child {
    margin-top: 20px;
  }
}
.campaign02__tweet {
  background: #fff;
  display: none;
  position: relative;
}
.retweet .campaign02__tweet {
  display: block;
}
@media (max-width: 768px) {
  .campaign02__tweet {
    margin: 10vw auto 0;
    padding: 5.3vw 5.8vw;
    width: 93.6vw;
  }
}
@media (min-width: 769px) {
  .campaign02__tweet {
    margin: 30px auto 0;
    padding: 30px 68px;
    width: 536px;
  }
}
.campaign02__tweet:after {
  background: url(../img/campaign/icon_let.svg) top center/contain no-repeat;
  content: "";
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
  .campaign02__tweet:after {
    position: absolute;
    top: -1.9vw;
    left: -1.9vw;
    height: 18.1vw;
    width: 18.1vw;
  }
}
@media (min-width: 769px) {
  .campaign02__tweet:after {
    position: absolute;
    top: -10px;
    left: -15px;
    height: 100px;
    width: 100px;
  }
}
.campaign02__tweet__txt {
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media (min-width: 769px) {
  .campaign02__tweet__txt {
    font-size: 1.5rem;
  }
}
.campaign02__tweet__txt:after {
  content: "";
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .campaign02__tweet__txt:after {
    background: url(../img/campaign/deco_line_nrw.png) top center/contain no-repeat;
    position: absolute;
    left: 50%;
    bottom: -4.7vw;
    height: 3vw;
    width: 80.8vw;
  }
}
@media (min-width: 769px) {
  .campaign02__tweet__txt:after {
    background: url(../img/campaign/deco_line_wid.png) top center/contain no-repeat;
    position: absolute;
    left: 50%;
    bottom: -20px;
    height: 16px;
    width: 471px;
  }
}
@media (min-width: 769px) {
  .campaign02__tweet__txt:after {
    height: 16px;
    width: 471px;
  }
}
.campaign02__tweet__item {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign02__tweet__item {
    margin-top: 6.6vw;
  }
}
@media (min-width: 769px) {
  .campaign02__tweet__item {
    margin-top: 30px;
  }
}

.campaign__cont__num {
  display: block;
  margin: 1vw auto 0;
}
@media (max-width: 768px) {
  .campaign__cont__num {
    margin-bottom: 15px;
    width: 40.6vw;
  }
}
@media (min-width: 769px) {
  .campaign__cont__num {
    margin-bottom: 30px;
    width: 20.7vw;
  }
}

.comingsoon02 {
  position: relative;
}
@media (max-width: 768px) {
  .comingsoon02 {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .comingsoon02 {
    margin-top: 30px;
  }
}
.comingsoon02__num {
  filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.2));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .comingsoon02__num {
    width: 30.6vw;
  }
}
@media (min-width: 769px) {
  .comingsoon02__num {
    width: 207px;
  }
}
.comingsoon02__txt {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .comingsoon02__txt {
    margin-top: 3vw;
    width: 70.6vw;
  }
}
@media (min-width: 769px) {
  .comingsoon02__txt {
    margin-top: 16px;
    width: 424px;
  }
}
.comingsoon02__date {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .comingsoon02__date {
    margin-top: 2.2vw;
    width: 72.8vw;
  }
}
@media (min-width: 769px) {
  .comingsoon02__date {
    margin-top: 9px;
    width: 438px;
  }
}

.guidelines {
  position: relative;
}
@media (max-width: 768px) {
  .guidelines {
    padding: 4vw 0 4vw;
  }
}
@media (min-width: 769px) {
  .guidelines {
    padding: 2.6vw 0 2.6vw;
  }
}

.guidelines__ttl__inner {
    background: url(../img/common/sub_title_bg.png) top center/auto 100% repeat-x;
}

.guidelines__ttl__ttl {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guidelines__ttl__ttl {
    width: 60.5vw;
    padding: 3vw 1vw;
  }
}
@media (min-width: 769px) {
  .guidelines__ttl__ttl {
    width: 23.5vw;
    padding: 1vw;
  }
}

.guidelines__ttl__num {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guidelines__ttl__num {
    margin-top: 60px;
    width: 34.6vw;
  }
}
@media (min-width: 769px) {
  .guidelines__ttl__num {
    margin-top: 5vw;
    width: 15vw;
  }
}
.guidelines__inner {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guidelines__inner {
    width: 87.4vw;
  }
}
@media (min-width: 769px) {
  .guidelines__inner {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .guidelines__inner {
    width: 912px;
  }
}
.guidelines__cont {
  display: none;
}
@media (max-width: 768px) {
  .guidelines__item:not(:first-child) {
    margin-top: 25px;
  }
}
@media (min-width: 769px) {
  .guidelines__item {
    border-bottom: 1px dashed #f573a5;
    padding: 32px 71px;
  }
}
@media (min-width: 769px) {
  .guidelines__item.-underline {
    border-bottom: none;
    padding: 32px 71px 0px;
  }
}
.guidelines__item__ttl {
  color: #ff465a;
  font-weight: 800;
}
@media (max-width: 768px) {
  .guidelines__item__ttl {
    font-size: 0.875rem;
  }
}
@media (min-width: 769px) {
  .guidelines__item__ttl {
    font-size: 1.125rem;
  }
}
.guidelines__item__txt {
  font-weight: 500;
}
@media (max-width: 768px) {
  .guidelines__item__txt {
    font-size: 0.75rem;
  }
}
@media (min-width: 769px) {
  .guidelines__item__txt {
    font-size: 1rem;
  }
}
.guidelines__item__txt.-bold {
  font-weight: 800;
}
.guidelines__item__txt a {
  text-decoration: underline;
}
.guidelines__item__txt .-prize {
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .guidelines__item__txt .-prize {
    margin-left: 28px;
  }
}
@media (min-width: 769px) {
  .guidelines__item__txt .-prize {
    margin-left: 35px;
  }
}
@media (max-width: 768px) {
  .guidelines__item__txt .-prize::before {
    position: absolute;
    top: 0;
    left: -28px;
    height: 25px;
    width: 30px;
  }
}
@media (min-width: 769px) {
  .guidelines__item__txt .-prize::before {
    position: absolute;
    top: 0;
    left: -35px;
    height: 25px;
    width: 30px;
  }
}
.guidelines__item__txt .-prize.-itema::before {
  content: "A賞";
}
.guidelines__item__txt .-prize.-itemb::before {
  content: "B賞";
}
.guidelines__item__txt .-prize.-itemc::before {
  content: "C賞";
}
.guidelines__item__txt .-prize.-itemd::before {
  content: "D賞";
}

@media (max-width: 768px) {
  .guidelines__ttl__num.-num02 {
    margin-top: 7.81vw;
  }
}
@media (min-width: 769px) {
  .guidelines__ttl__num.-num02 {
    margin-top: 2vw;
  }
}
.guidelines__content {
  position: relative;
}
.guidelines__content::before {
  border-bottom: 1px dashed #f573a5;
  content: "";
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .guidelines__content::before {
    position: absolute;
    left: 50%;
    bottom: -25px;
    height: 1px;
    width: 97vw;
  }
}
@media (min-width: 769px) {
  .guidelines__content::before {
    position: absolute;
    left: 50%;
    bottom: -35px;
    height: 1px;
    width: 100%;
  }
}
.guidelines__btn {
  color: #808080;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .guidelines__btn {
    font-size: 0.6875rem;
    border: 1px solid #808080;
    padding: 0 20px;
    height: 30px;
    width: 125px;
  }
}
@media (min-width: 769px) {
  .guidelines__btn {
    font-size: 0.9375rem;
    border: 1px solid #808080;
    padding: 0 30px;
    height: 40px;
    width: 180px;
  }
}
@media (max-width: 768px) {
  .guidelines__btn.-btn01 {
    margin: 20px auto 0;
  }
}
@media (min-width: 769px) {
  .guidelines__btn.-btn01 {
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  .guidelines__btn.-btn02 {
    margin: 20px auto 0;
  }
}
@media (min-width: 769px) {
  .guidelines__btn.-btn02 {
    margin: 20px auto 0;
  }
}
@media (min-width: 1200px) {
  .guidelines__btn.-btn02 {
    margin: 20px auto 0;
  }
}
.guidelines__btn::after {
  content: "";
  background: url(../img/campaign/ico_open.svg) top center/contain no-repeat;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .guidelines__btn::after {
    position: absolute;
    top: 50%;
    right: 15px;
    height: 12px;
    width: 12px;
  }
}
@media (min-width: 769px) {
  .guidelines__btn::after {
    position: absolute;
    top: 50%;
    right: 15px;
    height: 16px;
    width: 16px;
  }
}
.guidelines__btn.-active::after {
  background: url(../img/campaign/ico_close.svg) top center/contain no-repeat;
}
.guidelines__btn p {
  text-align: left;
}

.mainvisual {
  background: #fff;
  position: relative;
}
.mainvisual__inner {
  position: relative;
}
.mainvisual__visual {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mainvisual__visual {
    height: 82vw;
  }
}
@media (min-width: 769px) {
  .mainvisual__visual {
    height: 59vw;
  }
}
.mainvisual__visual_movie{
  width: 100%;
}
@media (max-width: 768px) {
  .mainvisual__visual_movie{
    height: 82vw;
    object-fit: cover;
  }
}
.mainvisual__logo {
  display: block;
}
@media (max-width: 768px) {
  .mainvisual__logo {
    position: absolute;
    top: 2.6vw;
    left: 3.3vw;
    width: 21.4vw;
  }
}
@media (min-width: 769px) {
  .mainvisual__logo {
    position: absolute;
    top: 9px;
    left: 16px;
    width: 200px;
  }
}
.mainvisual__ttl {
  display: block;
  position: absolute;
}
@media (max-width: 768px) {
  .mainvisual__ttl {
    left: 50%;
    bottom: 1vw;
    width: 69.3vw;
    transform: translateX(-50%);
  }
}
@media (min-width: 769px) {
  .mainvisual__ttl {
    bottom: 2vw;
    width: 38.8vw;
    left: calc(50% - 19.4vw);
  }
}
.mainvisual__ttl__img {
  opacity: 0;
}
.-onload .mainvisual__ttl__img {
  -webkit-animation: poplogo 1s forwards 1.2s;
          animation: poplogo 1s forwards 1.2s;
}

@-webkit-keyframes kvMove {
  0% {
    transform: scale(1.06, 1.06);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes kvMove {
  0% {
    transform: scale(1.06, 1.06);
  }
  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes kvMoveFadeIn {
  0% {
    transform: scale(1.06, 1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes kvMoveFadeIn {
  0% {
    transform: scale(1.06, 1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@-webkit-keyframes poplogo {
  0% {
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes poplogo {
  0% {
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.qa {
  position: relative;
}
@media (max-width: 768px) {
  .qa {
    padding: 4vw 0 4vw;
  }
}
@media (min-width: 769px) {
  .qa {
    padding: 2.6vw 0 2.6vw;
    margin: 0 auto;
  }
}

.qa__ttl__ttl {
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .qa__ttl__ttl {
    width: 24.6vw;
    padding: 3.2vw 3.2vw 2.2vw;
  }
}
@media (min-width: 769px) {
  .qa__ttl__ttl {
    width: 9.1vw;
    padding: 1.2vw 1vw 1vw;
  }
}
.qa__ttl__inner{
  background: url(../img/common/sub_title_bg.png) top center/auto 100% repeat-x;
}
.qa__ttl__num {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .qa__ttl__num {
    margin-top: 7.81vw;
    width: 34.6vw;
  }
}
@media (min-width: 769px) {
  .qa__ttl__num {
    margin-top: 2vw;
    width: 15vw;
  }
}
.qa__list {
  margin: 1vw auto;
}
@media (max-width: 768px) {
  .qa__list {
    width: 93.6vw;
  }
}
@media (min-width: 769px) {
  .qa__list {
    width: 93.7vw;
  }
}
@media (min-width: 1200px) {
  .qa__list {
    width: 912px;
  }
}
.qa__item {
  cursor: pointer;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .qa__item {
    padding: 20px 65px 20px 45px;
  }
}
@media (min-width: 769px) {
  .qa__item {
    padding: 40px 30px 40px 76px;
  }
}
.qa__item:nth-child(2n) {
  background: #e7f3ff;
}
.qa__item a {
  text-decoration: underline;
}
.qa__q {
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
@media (max-width: 768px) {
  .qa__q {
    font-size: 0.875rem;
    line-height: 1.78em;
  }
}
@media (min-width: 769px) {
  .qa__q {
    font-size: 1.25rem;
  }
}
.qa__q::before {
  content: "";
  background: url(../img/qa/txt_q.svg) no-repeat top right/contain;
}
@media (max-width: 768px) {
  .qa__q::before {
    position: absolute;
    top: 2px;
    left: -24px;
    height: 22px;
    width: 17px;
  }
}
@media (min-width: 769px) {
  .qa__q::before {
    position: absolute;
    top: 1px;
    left: -46px;
    height: 30px;
    width: 29px;
  }
}
.qa__a {
  font-weight: 500;
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .qa__a {
    font-size: 0.875rem;
    line-height: 1.78em;
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .qa__a {
    font-size: 1.0625rem;
    line-height: 1.7em;
    margin-top: 30px;
  }
}
.qa__a::before {
  content: "";
  background: url(../img/qa/txt_a.svg) no-repeat top right/contain;
}
@media (max-width: 768px) {
  .qa__a::before {
    position: absolute;
    top: 2px;
    left: -24px;
    height: 17.2px;
    width: 17px;
  }
}
@media (min-width: 769px) {
  .qa__a::before {
    position: absolute;
    top: 1px;
    left: -40px;
    height: 23.2px;
    width: 23px;
  }
}
.qa__btn {
  display: block;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .qa__btn {
    position: absolute;
    top: 50%;
    right: -25px;
    height: 19.5px;
    width: 19.5px;
  }
}
@media (min-width: 769px) {
  .qa__btn {
    position: absolute;
    top: 50%;
    right: 20px;
    height: 26px;
    width: 26px;
  }
}
.qa__btn__inner {
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .qa__btn__inner {
    height: 19.5px;
    width: 19.5px;
  }
}
@media (min-width: 769px) {
  .qa__btn__inner {
    height: 26px;
    width: 26px;
  }
}
.qa__btn__item01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url(../img/qa/btn_ac_1.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .qa__btn__item01 {
    height: 1.5px;
    width: 19.5px;
  }
}
@media (min-width: 769px) {
  .qa__btn__item01 {
    height: 2px;
    width: 26px;
  }
}
.qa__btn__item02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%, -50%);
  display: block;
  background: url(../img/qa/btn_ac_2.svg) no-repeat center/contain;
  transition: all 0.2s;
  transform-origin: top;
}
@media (max-width: 768px) {
  .qa__btn__item02 {
    height: 19.5px;
    width: 1.5px;
  }
}
@media (min-width: 769px) {
  .qa__btn__item02 {
    height: 26px;
    width: 2px;
  }
}
.-active .qa__btn__item02 {
  top: 49%;
  transform: rotate(-90deg) translate(-50%, -50%);
  opacity: 0;
}

@keyframes ttlfadeIn {
  0% {
    -webkit-mask-position: -200vw, 0;
            mask-position: -200vw, 0;
  }
  100% {
    -webkit-mask-position: 0, 0;
            mask-position: 0, 0;
  }
}
@-webkit-keyframes topBgsp {
  0% {
    background: transparent;
  }
  100% {
    background: url(../img/side/top_bg_pc.png) bottom right/100% auto no-repeat;
  }
}
@keyframes topBgsp {
  0% {
    background: transparent;
  }
  100% {
    background: url(../img/side/top_bg_pc.png) bottom right/100% auto no-repeat;
  }
}
@-webkit-keyframes topBgspposition {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}
@keyframes topBgspposition {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes topblur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes topblur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
.top {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .top {
    padding-top: 26.6vw;
    padding-bottom: 16.8vw;
    order: 1;
  }
}
@media (min-width: 769px) {
  .top {
    position: absolute;
    top: 15.3vw;
    right: 11.5vw;
  }
}
@media (min-width: 769px) {
  .top__inner {
    width: 36.9vw;
  }
}
.top__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .top__bg {
    display: none;
  }
}
.top__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .top__bg__inner {
    background: url(../img/side/top_bg_sp.png) 0 0/100% auto no-repeat;
    opacity: 0;
  }
}
.top .title {
  margin: 0 auto;
}
.top .title__inner {
  -webkit-mask-image: url(../img/side/ttl_mask.png);
          mask-image: url(../img/side/ttl_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: -200vw, 0;
          mask-position: -200vw, 0;
  -webkit-mask-size: 200vw auto;
          mask-size: 200vw auto;
  -webkit-animation: ttlfadeIn 2.5s 0.5s forwards;
          animation: ttlfadeIn 2.5s 0.5s forwards;
}
@media (min-width: 769px) {
  .top .title__inner {
    -webkit-animation: ttlfadeIn 8s forwards;
            animation: ttlfadeIn 8s forwards;
  }
}
@media (max-width: 768px) {
  .top .title {
    position: absolute;
    top: -15.8vw;
    left: 0;
    filter: drop-shadow(0px 0px 8px #091039);
    width: 100%;
  }
}
@media (min-width: 769px) {
  .top .title {
    position: relative;
    left: auto;
    max-width: 710px;
    width: 36.9vw;
  }
}
.top .title__topcopy__catchcopy {
  display: block;
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .top .title__topcopy__catchcopy {
    -webkit-animation: blur 1s 3s forwards 1;
            animation: blur 1s 3s forwards 1;
    opacity: 0;
    margin: 1.4vw auto 0;
    height: 1.9vw;
    width: 32vw;
  }
}
.top .title__topcopy__catchcopy img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.-active .top .title__topcopy__catchcopy {
  -webkit-animation: none;
          animation: none;
  opacity: 1;
}

.cap-item{
  position:relative;
  margin:0 0 20px;
}
.cap-item__inner{
  margin: 30px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}
.cap-item__img{
  width: 48%;
}
.cap-item__img:nth-child(odd){
margin-right:0;
}
.cap-item__img img{
width:100%;
height:auto;
display:block;
}
.cap-app_title {
  width: 40vw;
  margin: 4vw auto 2vw;
}
.cap-app__txt{
  width: 50vw;
  margin: 2vw auto;
}
.cap-app_tw{
  margin: 0 2vw;
}
.cap-app_tw_inner{
  background: #fff;
  opacity: 1!important;
  margin: 2vw auto 0;
  max-width: 600px;
  padding: 2vw!important;
  border: solid 2px #2fa107;
  height: 100%!important;
}
.cap-app_tw_inner p.tw-txt {
  text-align: center;
  font-size: 2rem;
  line-height: 5.7em;
  font-weight: bold;
  color: #2fa107;
}
.cap-app__tw {
  width: 450px;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .cap-app__tw {
    width: 100%;
    margin: 0 auto;
  }
  .cap-item{
    margin:0 20px;
  }
  .cap-item__inner{
    width:auto;
  }
  .cap-item__img{
    margin:0 0 10px;
    width:100%;
  }
  .cap-app_title {
    width: 74vw;
    margin: 8.5vw auto 6.5vw;
  }
  .cap-app__txt {
    width: 83vw;
    margin: 4vw auto;
  }
}

.ac-box{
  width: auto;
  margin: 30px auto 5px;
}
.ac-box label{
  max-width: 262px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #f74f80;
  margin: auto;
  line-height: 50px;
  position: relative;
  display: block;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s;
}

@media (hover: hover) {
  .ac-box label:hover{
  background: rgba(247 79 128 / 55%);
  -webkit-transition: all .3s;
  transition: all .3s;
  }
}

.ac-box input{
display: none;
}
.ac-box label:after{
content: "";
background: url(../img/campaign/ico_open_w.png) top center/contain no-repeat;
transform: translateY(-50%);
}

.ac-box label:after {
  position: absolute;
  top: 50%;
  right: 15px;
  height: 16px;
  width: 16px;
} 
.ac-box input:checked ~ label::after {
color: #fff;
content: "";
background: url(../img/campaign/ico_close_w.png) top center/contain no-repeat;
}

.ac-box > div{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}

.ac-box input:checked ~ div{
height: auto;
padding: 10px 5px 5px;
opacity: 1;
}
 
.twitter-tweet{
  margin-left:0 ;
}
  
.benefits__tictok {
  background-color: #ae762b;
background-image: linear-gradient(45deg, #ae762b 0%, #fae077 25%, #ffffca 45%, #fae077 75%, #ae762b 100%);
  width: 600px;
  margin: 40px auto;
  padding: 0.25em;
}
@media (max-width: 768px){
  .benefits__tictok {
    width: 100%;
    margin: 5vw auto 12vw;
  }
  .benefits__tictok__txt {
    font-size: 1em!important;
    margin: 2vw auto;
  }
}

.benefits__tictok__inner {
  background-color: #192d43;
  background-image: linear-gradient(0deg, #1d4a6e 0%, #192e44 100%);
  padding: 3vw;
}

.benefits__tictok__txt {
  font-weight: bold;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.6em;
  text-align: center;
}

.benefits__tictok__btn {
  background: url(../img/benefits/bnr_tic.png) no-repeat top center/contain;
  height: 80px;
  display: block;
  transition: all 0.3s;
  margin: 20px auto 0;
}
@media (max-width: 768px){
.benefits__tictok__btn {
    background: url(../img/benefits/bnr_tic.png) no-repeat top center/contain;
    height: 12vw;
    width: 70.6vw;
    margin-top: 0;
  }
}
@media (hover: hover) {
  .benefits__tictok__btn:hover {
    filter: brightness(1.1);
  }
}

.benefits__tictok__qr {
  margin: 1.5em auto;
    width: 80%;
}
@media (max-width: 769px) {
.benefits__tictok__qr {
  width: 90%;
}
}

/* ----------------------------------- */
/* tiktok*/
/* ----------------------------------- */
.tiktok {
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .tiktok {
    background: url(../img/common/bg_ptn_04.png) top center / 56px repeat;
    padding: 14vw 0;
  }
}
@media (min-width: 769px) {
  .tiktok {
    background: url(../img/common/bg_ptn_04.png) top center / 56px repeat;
    padding: 8vw 0 4vw;
  }
}



/* ----------------------------------- */
/* contents-footer*/
/* ----------------------------------- */
#contents-footer {
    box-sizing: border-box;
    background: #000;
    text-align: center;
    padding: 5%;
    color: #fff;
}
#contents-footer .p-share__item { margin: 0 6px;}
#contents-footer .footer-logo{ margin: 20px auto 0; padding: 20px; position: relative;}
#contents-footer .footer-logo:before {
  background: linear-gradient(90deg,rgba(80,106,137,0) 0,#506a89 30%,#506a89 80%,rgba(80,106,137,0) 100%);
  top: 0;
  content: '';
  height: 0.08rem;
  left: 0;
  position: absolute;
  width: 100%;
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}
#contents-footer .footer-logo img { width: 100%; max-width: 300px; position: relative;}
@media screen and (max-width: 620px){
  #contents-footer .footer-logo img { left: 0px;}
}

#contents-footer .footer__copyright { display: block; margin-top: 20px; }
@media screen and (max-width: 620px){
  #contents-footer .footer__copyright { margin-top: 2vw; }
}

#contents-footer .p-footer__official{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  clear: both;
}
#contents-footer .p-footer__official a{display: block; padding: 0 4px; width: calc(98% / 5); margin: 5px 0 0 0;}
@media (max-width: 769px) {
#contents-footer .p-footer__official a {
  width: calc(96% / 2);
  padding: 6px;
  margin: 1%;
}
}

/*share*/
.p-share { font-size: 0; margin: 0 auto; text-align: center;}
.p-share__item { margin: 0 6px; transition: opacity .3s; width: 68px; display: inline-block;}
.p-share__item img { width: 68px; height: auto;}
@media (hover: hover) {
  .p-share__item:hover { opacity: .55 }
}

section.cam01.end .campaign__period:before{
  content: "キャンペーン応募は終了いたしました";
  display: block;
  position: absolute;
  top: 2%;
  padding: 0.3em 0;
  font-size: 150%;
  font-weight: bold;
  color: #fff;
  background: rgb(74 62 31 / 90%);
  transform-origin: right top;
  transform: rotate(354deg);
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
section.cam02.end .campaign__period:before {
  content: "キャンペーンは終了いたしました\Aたくさんのご参加ありがとうございました！";
  white-space: pre;
  display: inline-block;
  position: absolute;
  top: -8%;
  padding: 0.3em 0;
  font-size: 150%;
  font-weight: bold;
  color: #fff;
  background: rgb(74 62 31 / 90%);
  transform-origin: right top;
  transform: rotate(354deg);
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
@media (max-width: 769px) {
  section.cam01.end .campaign__period:before,section.cam02.end .campaign__period:before {
    font-size: 80%;
  }
  }

.rtitem__list li.fix:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: url(../img/campaign/item/icon_rt_tassei.png) no-repeat left top/ contain;
  width: 125px;
  height: 100%;
  z-index: 2;
}
@media (max-width: 769px) {
  .rtitem__list li.fix:before {
    width: 20vw;
    height: 100%;
  }
  .rtitem__list li.fix:last-child:before {
    top: -0.6rem;
  }
}

.modal_area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    padding: .4rem;
    overscroll-behavior-y: contain;
    background: rgba(255,255,255,.9);
    scrollbar-width: none
}

@media screen and (max-width: 560px)and (orientation: landscape) {
    .modal_area {
        padding-bottom:2rem
    }
}

.modal_area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal_inner {
    box-sizing: content-box;
    position: relative;
    top: 50%;
    max-width: 94vw;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media (min-width: 769px) {
    .modal_inner {
        max-width:600px
    }
}

@media screen and (max-width: 560px) and (orientation: landscape) {
    .modal_inner {
        top:inherit;
        -webkit-transform: none;
        transform: none
    }
}

.modal_close {
    position: absolute;
    right: -1vw;
    bottom: -14vw;
    display: block;
    width: 12vw;
    -webkit-transition: -webkit-filter .4s;
    transition: -webkit-filter .4s;
    transition: filter .4s;
    transition: filter .4s,-webkit-filter .4s
}

@media (min-width: 769px) {
    .modal_close {
        right:-6px;
        bottom: -114px;
        width: 96px
    }
}

@media(hover: hover) {
    .modal_close:hover {
        opacity: 0.9;
    }
}

.modal_mov {
    padding-bottom: 56.25%;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #ffebeb;
}
.loading::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    background: url("../img/common/loading.png") no-repeat center/contain;
    -webkit-animation: loadBlink 1.6s infinite forwards;
            animation: loadBlink 1.6s infinite forwards;
}
@media (max-width: 769px) {
    .loading::before {
        width: 32vw;
        height: 11.49vw;
    }
}
@media (min-width: 769px) {
    .loading::before {
        width: 131px;
        height: 47px;
    }
}
@-webkit-keyframes loadBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadBlink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
