@charset "UTF-8";
/* @Reference site */
/* @MEMO */
/**
 * 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("/assets/img/common/lightcase/lightcase.eot?55356177");
  src: url("/assets/img/common/lightcase/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("/assets/img/common/lightcase/lightcase.woff?55356177") format("woff"), url("/assets/img/common/lightcase/lightcase.ttf?55356177") format("truetype"), url("/assets/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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 769px) {
  .lightcase-icon-close {
    right: 30px !important;
    top: 30px !important;
    width: 60px !important;
  }
  .lightcase-icon-close:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.lightcase-icon-close:before {
  content: '';
  height: 40px;
  width: 40px;
  background: url("../img/common/ico/ico_close.svg") 0 0/100% auto no-repeat;
}

@media screen and (min-width: 769px) {
  .lightcase-icon-close:before {
    height: 60px;
    width: 60px;
  }
}

/* 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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 5002;
  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;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  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;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  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;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  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;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(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;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(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;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 5000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 0.9 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 4px;
  }
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 6px;
  height: 6px;
  margin: 5px;
  background: #646464;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 5px;
  }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*! sanitize.css v4.0.0 | CC0 License | github.com/10up/sanitize.css */
/* Display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

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

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

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

/* Elements of HTML (https://www.w3.org/TR/html5/semantics.html)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
:before,
:after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */
}

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

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Add a flattened line height in all browsers (opinionated).
 * 4. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  line-height: 1.5;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
}

/* Sections (https://www.w3.org/TR/html5/sections.html)
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

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

/* Grouping content (https://www.w3.org/TR/html5/grouping-content.html)
   ========================================================================== */
/**
 * 1. Correct font sizing inheritance and scaling in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 1. Correct the height in Firefox.
 * 2. Add visible overflow in Edge and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Add a bordered underline effect in all browsers.
 * 2. Remove text decoration in Firefox 40+.
 */
abbr[title] {
  border-bottom: 1px dotted;
  /* 1 */
  text-decoration: none;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct colors in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the font size in all browsers.
 */
small {
  font-size: 83.3333%;
}

/**
 * Change the positioning on superscript and subscript elements
 * in all browsers (opinionated).
 * 1. Correct the font size in all browsers.
 */
sub,
sup {
  font-size: 83.3333%;
  /* 1 */
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://www.w3.org/TR/html5/embedded-content-0.html)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

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

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

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

/* Links (https://www.w3.org/TR/html5/links.html#links)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove the gaps in underlines in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline when hovering in all browsers (opinionated.
 */
:hover {
  outline-width: 0;
}

/* Tabular data (https://www.w3.org/TR/html5/tabular-data.html)
   ========================================================================== */
/*
 * Remove border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* transform-style:  (https://www.w3.org/TR/html5/forms.html)
   ========================================================================== */
/**
 * 1. Remove the default styling in all browsers (opinionated).
 * 3. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  background-color: transparent;
  /* 1 */
  border-style: none;
  /* 1 */
  color: inherit;
  /* 1 */
  font-size: 1em;
  /* 1 */
  margin: 0;
  /* 3 */
}

/**
 * Correct the overflow in IE.
 * 1. Correct the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance in Edge, Firefox, and IE.
 * 1. Remove the inheritance in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent the WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

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

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

/**
 * Correct the border, margin, and padding in all browsers.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Remove the vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

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

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

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari for OS X.
 */
::-webkit-search-cancel-button,
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style on placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: .54;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=54)";
}

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

/* WAI-ARIA (https://www.w3.org/TR/html5/dom.html#wai-aria)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

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

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/* User interaction (https://www.w3.org/TR/html5/editing.html)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[hidden][aria-hidden="false"] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

h1,
h2,
h3,
h4,
ul,
p,
li {
  margin: 0;
  padding: 0;
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1F1F1F;
  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%;
}

img {
  max-width: 100%;
}

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

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

.l-wrap {
  position: relative;
  min-height: 100%;
  width: 100%;
  visibility: hidden;
}

@media (min-width: 769px) {
  .l-wrap {
    min-width: 1280px;
  }
  .top .l-wrap {
    min-width: initial;
  }
}

.l-page {
  position: relative;
  width: 100%;
}

@media (min-width: 769px) {
  .l-flx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.l-contents {
  margin-left: 35px;
  padding-bottom: 40.5%;
  position: relative;
  width: calc(100% - 35px);
}

@media (max-width: 320px) {
  .l-contents {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .l-contents {
    margin-left: 0;
    max-width: 1220px;
    min-width: 900px;
    padding-bottom: 0;
    width: 63.5vw;
    min-height: 100vh;
    background: #fff;
  }
  .sticky .l-contents {
    -ms-flex-item-align: end;
        align-self: flex-end;
    bottom: 0;
    position: sticky;
  }
}

.l-main {
  position: relative;
  background-color: #fff;
  padding: 80px 5.3vw 70px;
}

@media (min-width: 769px) {
  .l-main {
    padding: 80px 7.29vw;
    min-height: 100vh;
    background: none;
  }
}

@media (min-width: 769px) {
  .l-main__inner {
    margin-top: 60px;
  }
}

.l-footer {
  background: #FFF;
  margin-left: auto;
  padding: 20px 0;
  position: relative;
  width: calc(100% - 35px);
}

@media (min-width: 769px) {
  .l-footer {
    padding: 20px 30px;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .l-footer footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-footer__navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer__navs__item {
  font-size: 12px;
  font-size: 0.75rem;
  border-left: 2px solid #7C7C7C;
  font-weight: 900;
  line-height: 1;
  padding: 0 8px;
}

@media (min-width: 769px) {
  .l-footer__navs__item {
    font-size: 0.8125rem;
  }
}

.l-footer__navs__item:last-child {
  border-right: 2px solid #7C7C7C;
}

.l-footer__navs__item a {
  color: #7C7C7C;
  text-decoration: none;
}

.l-footer__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  color: #7C7C7C;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 769px) {
  .l-footer__copyright {
    font-size: 0.625rem;
    margin-left: 10px;
  }
}

.l-header {
  display: none;
}

@media (min-width: 769px) {
  .l-header {
    display: block;
    min-height: 100vh;
    padding-bottom: 30px;
    width: 260px;
  }
  .sticky .l-header {
    -ms-flex-item-align: end;
        align-self: flex-end;
    bottom: 0;
    height: 100vh;
    min-height: 1050px;
    position: sticky;
  }
}

@media (min-width: 769px) {
  .l-header__inner {
    height: 100%;
    padding: 40px 30px 0;
  }
}

.l-header__logo {
  display: none;
}

@media (min-width: 769px) {
  .l-header__logo {
    display: block;
    font-size: 0;
    margin: 0 auto;
    width: 200px;
  }
}

@media (min-width: 769px) {
  .l-header__logo__main {
    display: block;
  }
  .l-header__logo__main.-ready {
    -webkit-animation: clipBottomToUp 0.3s ease-out 0.2s;
            animation: clipBottomToUp 0.3s ease-out 0.2s;
  }
}

.l-header__logo__diamond {
  position: absolute;
  top: 92px;
  left: 119px;
  display: block;
  width: 12px;
}

.l-header__logo__diamond img {
  display: block;
}

.l-header .p-gnavs {
  margin-top: 70px;
}

@media (min-width: 769px) {
  .l-header .p-gnavs__item {
    font-size: 1.125rem;
  }
}

@media (min-width: 769px) {
  .l-header .p-gnavs__item:not(:first-child) {
    margin-top: 30px;
  }
}

.l-header .p-gnavs__item a:hover .-change {
  color: #4D4D4D !important;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-header .p-gnavs__item.-current .-change {
  color: #4D4D4D !important;
}

.l-header .p-gnavs__text {
  display: inline-block;
  position: relative;
}

@media (min-width: 769px) {
  .l-header .p-gshare {
    position: absolute;
    left: 30px;
    bottom: 30px;
  }
}

.l-spheader {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  z-index: 1500;
}

.character .l-spheader {
  z-index: 1;
}

@media (min-width: 769px) {
  .l-spheader {
    display: none;
  }
}

.l-spheader__color {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 35px;
  z-index: 1000;
}

.l-spheader__main {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  padding: 90px 35px 35px 35px;
  width: 100vw;
  display: none;
}

.l-spheader__bgs .-layer1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
}

.l-spheader__bgs .-layer2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0;
  width: 30%;
}

.l-spheader .p-gnavs__item {
  font-size: 25px;
  font-size: 1.5625rem;
}

.l-spheader .p-gnavs__item:not(:first-child) {
  margin-top: 25px;
}

.l-spheader .p-gnavs__item.-ready {
  -webkit-animation: clipLeftToRight 0.2s ease-out;
          animation: clipLeftToRight 0.2s ease-out;
}

.l-spheader .p-gnavs__text {
  display: inline-block;
  position: relative;
}

.l-spheader .p-gshare {
  display: block;
  font-size: 0;
  margin: 0 0 0 auto;
  width: 32px;
  position: sticky;
  bottom: 35px;
  right: 35px;
}

.l-spheader .p-gshare__title {
  margin: 0 auto;
  width: 32px;
}

.l-spheader .p-gshare__item {
  margin: 15px auto 0 auto;
  text-align: center;
}

.l-spheader .p-gshare__item.-twitter {
  width: 25px;
}

.l-spheader .p-gshare__item.-line {
  width: 28px;
}

.l-spheader .p-gshare__item.-facebook {
  width: 12px;
}

.l-spheader .p-gshare__item a {
  display: block;
}

.l-spheader .p-gshare__item img {
  display: block;
}

.c-humberger {
  position: relative;
}

.c-humberger.-lower {
  position: fixed;
  top: 15px;
  left: 12px;
  z-index: 1600;
}

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

@-webkit-keyframes fadeInBg {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes fadeInBg {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@-webkit-keyframes clipLeftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
            clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes clipLeftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
            clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes clipBottomToUp {
  0% {
    -webkit-clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
            clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes clipBottomToUp {
  0% {
    -webkit-clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
            clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

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

.c-br_wide {
  display: none;
}

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

.c-btn-prev, .c-btn-next {
  border-style: solid;
  display: inline-block;
}

.c-btn-prev.-disable, .c-btn-next.-disable {
  visibility: hidden;
}

.c-btn-prev {
  border-width: 6px 8px 6px 0;
  border-color: transparent #4D4D4D transparent transparent;
}

.c-btn-next {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #4D4D4D;
}

.c-btn-number {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  width: 24px;
}

@media (min-width: 769px) {
  .c-btn-number {
    line-height: 32px;
    width: 32px;
  }
}

.c-btn-number.-current {
  background-color: #4D4D4D;
  border-radius: 50%;
  color: #FFF;
}

.c-btn-text {
  color: #4D4D4D;
  line-height: 1;
  text-decoration: none;
}

.c-btn-boxtext {
  position: relative;
  text-align: center;
}

.c-btn-boxtext a {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #0041F1;
  color: #FFF;
  display: block;
  font-weight: bold;
  padding: 15px 0;
  position: relative;
  text-decoration: none;
}

@media (min-width: 769px) {
  .c-btn-boxtext a {
    font-size: 1.1875rem;
  }
}

.c-btn-boxtext a:after {
  position: absolute;
  bottom: 50%;
  right: 15px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  -webkit-transform: translate(0, 50%) rotate(45deg);
          transform: translate(0, 50%) rotate(45deg);
}

.c-font-fatfrank {
  font-family: fatfrank, sans-serif;
  font-weight: 400;
}

.c-font-noto {
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP';
}

.-bold {
  font-weight: 700;
}

.-black {
  font-weight: 900;
}

.c-hidetxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.c-hover_op {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.c-hover_op:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.c-humberger {
  cursor: pointer;
  height: 22px;
  width: 23px;
}

.c-humberger__line {
  background-color: #4D4D4D;
  display: block;
  height: 4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}

.c-humberger__line:nth-child(1) {
  position: absolute;
  top: 0;
}

.c-humberger__line:nth-child(2) {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.c-humberger__line:nth-child(3) {
  position: absolute;
  bottom: 0;
}

.c-humberger.-active {
  width: 32px;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.c-humberger.-active .c-humberger__line:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-humberger.-active .c-humberger__line:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(-10%, 50%);
          transform: translate(-10%, 50%);
}

.c-humberger.-active .c-humberger__line:nth-child(3) {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
}

html.in_modal,
body.in_modal {
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
}

.c-modal {
  background: rgba(255, 255, 255, 0.95);
  color: #4D4D4D;
  display: none;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 6000;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.c-modal__close {
  width: 40px;
  height: 40px;
  z-index: 6000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  top: 25px;
  right: 25px;
}

.c-modal__close img {
  width: 100%;
}

@media (min-width: 769px) {
  .c-modal__close {
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .c-modal__close:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.c-modal__txt {
  background: url(../img/common/ui/line.png);
  background-size: auto 36px;
  font-weight: bold;
  line-height: 36px;
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 769px) {
  .c-modal__txt {
    background-size: auto 50px;
    line-height: 50px;
    font-size: 1rem;
  }
}

.c-modal__txt p + p {
  margin-top: 1em;
}

.c-modal__txt img {
  margin: 1em 0;
  max-width: 100%;
}

.c-modal__txt a {
  color: #e91e79;
  text-decoration: underline;
}

.c-modal__txt a:hover {
  text-decoration: none;
}

.c-modal__txt:after {
  background: url(../img/common/ui/line.png);
  background-size: auto 36px;
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.c-modal__paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 40px;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .c-modal__paginate {
    margin-top: 80px;
  }
}

.c-modal__paginate__item {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 20px;
  cursor: pointer;
  font-weight: bold;
}

@media (min-width: 769px) {
  .c-modal__paginate__item {
    font-size: 0.8125rem;
  }
}

.c-modal__paginate__item.-next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0041f1;
}

.c-modal__paginate__item.-prev {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #0041f1 transparent transparent;
}

.c-modal__paginate__item.-disable {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  cursor: default;
}

.c-owl.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.c-owl.owl-theme .owl-dots .owl-dot span {
  background: #ccc;
  height: 8px;
  width: 8px;
}

.c-owl.owl-theme .owl-dots .owl-dot.active span, .c-owl .owl-theme .owl-dots .owl-dot:hover span {
  background: #1f1f1f;
}

.c-pagebg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.c-pagebg__inner {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 120%;
  width: 100%;
}

@media (min-width: 769px) {
  .c-pagebg__inner {
    background-position: 50% 50%;
    height: 100%;
  }
}

.-news .c-pagebg__inner {
  background-image: url(../img/news/bg.jpg);
}

.-character .c-pagebg__inner {
  background-position: top left;
  background-image: url(../img/character/bg.jpg);
}

@media (min-width: 769px) {
  .-character .c-pagebg__inner {
    background-position: top center;
  }
}

.-story .c-pagebg__inner {
  background-image: url(../img/story/bg.jpg);
}

.-staffcast .c-pagebg__inner {
  background-image: url(../img/staffcast/bg.jpg);
}

.-onair .c-pagebg__inner {
  background-image: url(../img/onair/bg.jpg);
}

.-streaming .c-pagebg__inner {
  background-image: url(../img/streaming/bg.jpg);
}

.-music .c-pagebg__inner {
  background-image: url(../img/music/bg.jpg);
}

.-movie .c-pagebg__inner {
  background-image: url(../img/movie/bg.jpg);
}

.-special .c-pagebg__inner {
  background-image: url(../img/special/bg.jpg);
}

.-bddvd .c-pagebg__inner {
  background-image: url(../img/bddvd/bg.jpg);
}

.c-offer {
  color: #7c7c7c;
  font-size: 9px;
  font-size: 0.5625rem;
}

@media (min-width: 769px) {
  .c-offer {
    font-size: 0.6875rem;
  }
}

[data-theme="green"] .c-theme-bgcolor {
  background-color: #00E38A;
}

[data-theme="yellow"] .c-theme-bgcolor {
  background-color: #FFE000;
}

[data-theme="green"] .c-theme-color {
  color: #00E38A;
}

[data-theme="yellow"] .c-theme-color {
  color: #FFE000;
}

[data-theme="green"] .c-combine-bgcolor {
  background-color: #7149e0;
}

[data-theme="yellow"] .c-combine-bgcolor {
  background-color: #0041F1;
}

[data-theme="green"] .c-combine-color {
  color: #7149e0;
}

[data-theme="yellow"] .c-combine-color {
  color: #0041F1;
}

.c-visible_nrw {
  display: block;
}

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

.c-visible_nrw.-inline {
  display: inline;
}

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

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

.p-broadcast__catch__small {
  font-weight: bold;
  line-height: 1.33;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 769px) {
  .p-broadcast__catch__small {
    text-align: left;
    line-height: 1.42;
    letter-spacing: 0.06em;
    font-size: 1.3125rem;
  }
}

.p-broadcast__catch__small span {
  font-size: 12px;
  font-size: 0.75rem;
}

.streaming .p-broadcast__catch__small {
  margin-top: 4px;
}

.p-broadcast__catch__large {
  color: #7c7c7c;
  font-family: fatfrank, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.94;
  text-align: center;
  font-size: 37px;
  font-size: 2.3125rem;
}

@media (max-width: 320px) {
  .p-broadcast__catch__large {
    word-break: break-word;
  }
}

@media (min-width: 769px) {
  .p-broadcast__catch__large {
    text-align: left;
    font-size: 3rem;
  }
}

.onair .p-broadcast__catch__large {
  margin-top: 4px;
}

.p-broadcast__catch__offer {
  text-align: center;
}

@media (min-width: 769px) {
  .p-broadcast__catch__offer {
    text-align: left;
  }
}

.p-broadcast__subttl {
  color: #0041F1;
  font-weight: bold;
  margin: 30px 0 -8px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 769px) {
  .p-broadcast__subttl {
    margin: 50px 0 -20px;
    font-size: 1.125rem;
  }
}

.p-broadcast__subttl em {
  font-style: normal;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 769px) {
  .p-broadcast__subttl em {
    font-size: 1.3125rem;
  }
}

.p-broadcast__listhead {
  margin-top: 24px;
}

@media (min-width: 769px) {
  .p-broadcast__listhead {
    margin-top: 40px;
  }
}

.p-broadcast__listhead__list {
  border-bottom: 1px solid rgba(124, 124, 124, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 6px;
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list {
    padding-bottom: 12px;
  }
}

.p-broadcast__listhead__list__item {
  font-weight: 500;
  color: #7c7c7c;
  line-height: 1;
  font-size: 11px;
  font-size: 0.6875rem;
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list__item {
    font-size: 0.8125rem;
  }
}

.p-broadcast__listhead__list__item:nth-of-type(1) {
  width: 41%;
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list__item:nth-of-type(1) {
    width: 18.75%;
  }
}

.p-broadcast__listhead__list__item:nth-of-type(2) {
  width: 59%;
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list__item:nth-of-type(2) {
    width: 13.5%;
  }
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list__item:nth-of-type(3) {
    width: 30.25%;
  }
}

@media (min-width: 769px) {
  .p-broadcast__listhead__list__item:nth-of-type(4) {
    width: 37.5%;
  }
}

.p-broadcast__list {
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .p-broadcast__list {
    margin-bottom: 16px;
  }
}

.p-broadcast__list__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(124, 124, 124, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.53;
  padding: 8px 0;
}

@media (min-width: 769px) {
  .p-broadcast__list__item {
    min-height: 80px;
  }
}

.p-broadcast__list__item .title {
  font-weight: bold;
  width: 41%;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 769px) {
  .p-broadcast__list__item .title {
    width: 18.75%;
    font-size: 1.1875rem;
  }
}

.p-broadcast__list__item .title a {
  color: #1F1F1F;
}

.p-broadcast__list__item .desc {
  width: 59%;
}

.p-broadcast__list__item .start,
.p-broadcast__list__item .schedule,
.p-broadcast__list__item .note {
  font-weight: 500;
  color: #4D4D4D;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 769px) {
  .p-broadcast__list__item .start,
  .p-broadcast__list__item .schedule,
  .p-broadcast__list__item .note {
    line-height: 1.4;
  }
}

@media (min-width: 769px) {
  .p-broadcast__list__item .start {
    width: 13.5%;
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .p-broadcast__list__item .schedule {
    width: 30.25%;
    font-size: 1rem;
  }
}

.p-broadcast__list__item .schedule span {
  display: inline-block;
}

@media (min-width: 769px) {
  .p-broadcast__list__item .schedule span {
    margin-top: 4px;
    font-size: 0.875rem;
  }
}

@media (min-width: 769px) {
  .p-broadcast__list__item .note {
    width: 37.5%;
    font-size: 1rem;
  }
}

.p-gnavs__item {
  line-height: 1;
  letter-spacing: 2.5px;
}

.p-gnavs__item a {
  color: #0041F1;
  display: inline-block;
  padding: 0 5px;
  position: relative;
  text-decoration: none;
}

.p-gnavs__item a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #4D4D4D;
  content: '';
  display: block;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  width: 0;
}

.p-gnavs__item a:hover {
  color: #4D4D4D;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.p-gnavs__item a:hover:after {
  width: 100%;
}

.p-gnavs__item a:hover .p-gnavs__diamond {
  background: url(../img/common/header/nav_diamond_over.svg) 0 0/contain no-repeat;
}

.p-gnavs__item.-current a {
  color: #4D4D4D;
}

.p-gnavs__item.-current a:after {
  width: 100%;
}

.p-gnavs__item.-current a .p-gnavs__diamond {
  background: url(../img/common/header/nav_diamond_over.svg) 0 0/contain no-repeat;
}

.p-gnavs__diamond {
  background: url(../img/common/header/nav_diamond.svg) 0 0/contain no-repeat;
  display: inline-block;
  font-size: 0;
  height: 6px;
  margin: 0 4px 0 2px;
  vertical-align: middle;
  width: 6px;
}

.p-gshare {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  margin: 0 auto;
  width: 42vw;
}

@media (min-width: 769px) {
  .p-gshare {
    display: block;
    font-size: 0;
    margin: 0;
    width: 32px;
  }
}

.p-gshare__title {
  width: 10vw;
}

@media (min-width: 769px) {
  .p-gshare__title {
    margin: 0 auto;
    width: 32px;
  }
}

.p-gshare__item {
  margin: 0;
}

@media (min-width: 769px) {
  .p-gshare__item {
    margin: 15px auto 0 auto;
    text-align: center;
  }
}

.p-gshare__item.-twitter {
  width: 6.4vw;
}

@media (min-width: 769px) {
  .p-gshare__item.-twitter {
    width: 25px;
  }
}

.p-gshare__item.-line {
  width: 7vw;
}

@media (min-width: 769px) {
  .p-gshare__item.-line {
    width: 28px;
  }
}

.p-gshare__item.-facebook {
  width: 2.6vw;
}

@media (min-width: 769px) {
  .p-gshare__item.-facebook {
    width: 12px;
  }
}

.p-gshare__item a {
  display: block;
}

.p-gshare__item img {
  display: block;
}

.p-pageHeader {
  padding-top: 40.5%;
  position: relative;
}

@media (min-width: 769px) {
  .p-pageHeader {
    display: none;
  }
}

.p-pageHeader__logo {
  position: absolute;
  top: 12px;
  left: 4vw;
  width: 28vw;
}

.p-pagenate {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenate__item {
  margin: 0 10px;
}

.p-splash {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: none;
  z-index: -1;
}

.p-splash.-active {
  display: block;
  z-index: 5000;
}

.p-splash__layer {
  height: 0;
}

.p-splash__layer.-layer1 {
  width: 35px;
}

@media (min-width: 769px) {
  .p-splash__layer.-layer1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
  }
}

.p-splash__layer.-layer2 {
  position: absolute;
  left: 34px;
  bottom: 0;
  width: calc(100% - 33px);
}

@media (min-width: 769px) {
  .p-splash__layer.-layer2 {
    left: 260px;
    max-width: 1221px;
    min-width: 900px;
    width: 63.5vw;
  }
}

.p-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  z-index: 1;
}

@media (min-width: 769px) {
  .p-title {
    position: relative;
    top: auto;
    left: auto;
    margin-left: -20px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 769px) {
  .p-title__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-title__line {
  position: relative;
  display: block;
  background-color: #666;
  height: 2px;
  width: 10px;
  top: 30px;
  margin-right: 0.1em;
}

@media (min-width: 769px) {
  .p-title__line {
    width: 14px;
    height: 3px;
    top: 40px;
  }
}

.p-title__item {
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  .p-title__item {
    letter-spacing: 0.14em;
  }
}

.p-title__item.-diamond {
  position: relative;
  top: 0.45em;
  display: inline-block;
  width: 9px;
  height: 9px;
  letter-spacing: 0;
  margin-right: 0.1em;
  margin-left: 0.05em;
  background: url(../img/common/ico/ico_diamond.svg) 0 0/100%;
}

@media (min-width: 769px) {
  .p-title__item.-diamond {
    width: 12px;
    height: 12px;
    top: 0.55em;
    margin-left: 0;
    margin-right: 0.25em;
    margin-left: 0.1em;
  }
}

.p-title__text {
  font-size: 38px;
  font-size: 2.375rem;
  display: inline-block;
}

@media (min-width: 769px) {
  .p-title__text {
    font-size: 3.25rem;
  }
}

.c-font-noto .p-title__text {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1.15;
}

@media (min-width: 769px) {
  .c-font-noto .p-title__text {
    font-size: 3rem;
    line-height: 1;
  }
}

.p-title__text.-change {
  color: #0041F1 !important;
}

@keyframes clipLeftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
            clip-path: polygon(0 0, 30% 0, 10% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes clipBottomToUp {
  0% {
    -webkit-clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
            clip-path: polygon(0 85%, 100% 60%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

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

.c-br_wide {
  display: none;
}

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

.c-btn-prev, .c-btn-next {
  border-style: solid;
  display: inline-block;
}

.c-btn-prev.-disable, .c-btn-next.-disable {
  visibility: hidden;
}

.c-btn-prev {
  border-width: 6px 8px 6px 0;
  border-color: transparent #4D4D4D transparent transparent;
}

.c-btn-next {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #4D4D4D;
}

.c-btn-number {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  width: 24px;
}

@media (min-width: 769px) {
  .c-btn-number {
    line-height: 32px;
    width: 32px;
  }
}

.c-btn-number.-current {
  background-color: #4D4D4D;
  border-radius: 50%;
  color: #FFF;
}

.c-btn-text {
  color: #4D4D4D;
  line-height: 1;
  text-decoration: none;
}

.c-btn-boxtext {
  position: relative;
  text-align: center;
}

.c-btn-boxtext a {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #0041F1;
  color: #FFF;
  display: block;
  font-weight: bold;
  padding: 15px 0;
  position: relative;
  text-decoration: none;
}

@media (min-width: 769px) {
  .c-btn-boxtext a {
    font-size: 1.1875rem;
  }
}

.c-btn-boxtext a:after {
  position: absolute;
  bottom: 50%;
  right: 15px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  -webkit-transform: translate(0, 50%) rotate(45deg);
          transform: translate(0, 50%) rotate(45deg);
}

.c-font-fatfrank {
  font-family: fatfrank, sans-serif;
  font-weight: 400;
}

.c-font-noto {
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP';
}

.-bold {
  font-weight: 700;
}

.-black {
  font-weight: 900;
}

.c-hidetxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.c-hover_op {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.c-hover_op:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.c-humberger {
  cursor: pointer;
  height: 22px;
  width: 23px;
}

.c-humberger__line {
  background-color: #4D4D4D;
  display: block;
  height: 4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}

.c-humberger__line:nth-child(1) {
  position: absolute;
  top: 0;
}

.c-humberger__line:nth-child(2) {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.c-humberger__line:nth-child(3) {
  position: absolute;
  bottom: 0;
}

.c-humberger.-active {
  width: 32px;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.c-humberger.-active .c-humberger__line:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-humberger.-active .c-humberger__line:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(-10%, 50%);
          transform: translate(-10%, 50%);
}

.c-humberger.-active .c-humberger__line:nth-child(3) {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
}

html.in_modal,
body.in_modal {
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
}

.c-modal {
  background: rgba(255, 255, 255, 0.95);
  color: #4D4D4D;
  display: none;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 6000;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.c-modal__close {
  width: 40px;
  height: 40px;
  z-index: 6000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  top: 25px;
  right: 25px;
}

.c-modal__close img {
  width: 100%;
}

@media (min-width: 769px) {
  .c-modal__close {
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .c-modal__close:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.c-modal__txt {
  background: url(../img/common/ui/line.png);
  background-size: auto 36px;
  font-weight: bold;
  line-height: 36px;
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (min-width: 769px) {
  .c-modal__txt {
    background-size: auto 50px;
    line-height: 50px;
    font-size: 1rem;
  }
}

.c-modal__txt p + p {
  margin-top: 1em;
}

.c-modal__txt img {
  margin: 1em 0;
  max-width: 100%;
}

.c-modal__txt a {
  color: #e91e79;
  text-decoration: underline;
}

.c-modal__txt a:hover {
  text-decoration: none;
}

.c-modal__txt:after {
  background: url(../img/common/ui/line.png);
  background-size: auto 36px;
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.c-modal__paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 40px;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .c-modal__paginate {
    margin-top: 80px;
  }
}

.c-modal__paginate__item {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 20px;
  cursor: pointer;
  font-weight: bold;
}

@media (min-width: 769px) {
  .c-modal__paginate__item {
    font-size: 0.8125rem;
  }
}

.c-modal__paginate__item.-next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0041f1;
}

.c-modal__paginate__item.-prev {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #0041f1 transparent transparent;
}

.c-modal__paginate__item.-disable {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  cursor: default;
}

.c-owl.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.c-owl.owl-theme .owl-dots .owl-dot span {
  background: #ccc;
  height: 8px;
  width: 8px;
}

.c-owl.owl-theme .owl-dots .owl-dot.active span, .c-owl .owl-theme .owl-dots .owl-dot:hover span {
  background: #1f1f1f;
}

.c-pagebg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.c-pagebg__inner {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 120%;
  width: 100%;
}

@media (min-width: 769px) {
  .c-pagebg__inner {
    background-position: 50% 50%;
    height: 100%;
  }
}

.-news .c-pagebg__inner {
  background-image: url(../img/news/bg.jpg);
}

.-character .c-pagebg__inner {
  background-position: top left;
  background-image: url(../img/character/bg.jpg);
}

@media (min-width: 769px) {
  .-character .c-pagebg__inner {
    background-position: top center;
  }
}

.-story .c-pagebg__inner {
  background-image: url(../img/story/bg.jpg);
}

.-staffcast .c-pagebg__inner {
  background-image: url(../img/staffcast/bg.jpg);
}

.-onair .c-pagebg__inner {
  background-image: url(../img/onair/bg.jpg);
}

.-streaming .c-pagebg__inner {
  background-image: url(../img/streaming/bg.jpg);
}

.-music .c-pagebg__inner {
  background-image: url(../img/music/bg.jpg);
}

.-movie .c-pagebg__inner {
  background-image: url(../img/movie/bg.jpg);
}

.-special .c-pagebg__inner {
  background-image: url(../img/special/bg.jpg);
}

.-bddvd .c-pagebg__inner {
  background-image: url(../img/bddvd/bg.jpg);
}

.c-offer {
  color: #7c7c7c;
  font-size: 9px;
  font-size: 0.5625rem;
}

@media (min-width: 769px) {
  .c-offer {
    font-size: 0.6875rem;
  }
}

[data-theme="green"] .c-theme-bgcolor {
  background-color: #00E38A;
}

[data-theme="yellow"] .c-theme-bgcolor {
  background-color: #FFE000;
}

[data-theme="green"] .c-theme-color {
  color: #00E38A;
}

[data-theme="yellow"] .c-theme-color {
  color: #FFE000;
}

[data-theme="green"] .c-combine-bgcolor {
  background-color: #7149e0;
}

[data-theme="yellow"] .c-combine-bgcolor {
  background-color: #0041F1;
}

[data-theme="green"] .c-combine-color {
  color: #7149e0;
}

[data-theme="yellow"] .c-combine-color {
  color: #0041F1;
}

.c-visible_nrw {
  display: block;
}

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

.c-visible_nrw.-inline {
  display: inline;
}

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

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

@-webkit-keyframes lightAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lightAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes funifuni {
  0% {
    -webkit-transform: translate(0, 0) scaleY(1);
            transform: translate(0, 0) scaleY(1);
  }
  100% {
    -webkit-transform: translate(0, 10px) scaleY(0.9);
            transform: translate(0, 10px) scaleY(0.9);
  }
}

@keyframes funifuni {
  0% {
    -webkit-transform: translate(0, 0) scaleY(1);
            transform: translate(0, 0) scaleY(1);
  }
  100% {
    -webkit-transform: translate(0, 10px) scaleY(0.9);
            transform: translate(0, 10px) scaleY(0.9);
  }
}

.easter {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  outline: none;
  z-index: 3000;
}

.easter__inner {
  height: 28.5vw;
  width: 24vw;
  -webkit-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
}

@media (min-width: 769px) {
  .easter__inner {
    height: 214px;
    width: 180px;
  }
}

.easter__size {
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

.easter__light {
  position: absolute;
  top: 55%;
  left: 50%;
  height: 160%;
  width: 160%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.easter__light:before {
  -webkit-animation: lightAnime 10s infinite linear;
          animation: lightAnime 10s infinite linear;
  background: url(../img/easter/common/egg_light.png) 50% 50%/100% auto no-repeat;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}

.easter__egg.-funifuni, .easter__split.-funifuni {
  -webkit-animation: funifuni 0.35s ease-out infinite;
          animation: funifuni 0.35s ease-out infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-transform-origin: 50% 95%;
          transform-origin: 50% 95%;
}

.easter__egg {
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: none;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
  height: 100%;
  position: relative;
  width: 100%;
}

[data-name="ai"] .easter__egg {
  background-image: url(../img/easter/ai/egg.png);
}

[data-name="momoe"] .easter__egg {
  background-image: url(../img/easter/momoe/egg.png);
}

[data-name="neiru"] .easter__egg {
  background-image: url(../img/easter/neiru/egg.png);
}

[data-name="rika"] .easter__egg {
  background-image: url(../img/easter/rika/egg.png);
}

[data-clicked="0"] .easter__egg {
  display: block;
}

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

[data-clicked="0"] .easter__split {
  display: none;
}

.easter__split.-crack {
  background: url(../img/easter/common/egg_black.png) 0 0/100% auto no-repeat;
}

.easter__split__layer1, .easter__split__layer2, .easter__split__layer3, .easter__split__layer4 {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  width: 100%;
}

[data-name="ai"] .easter__split__layer1 {
  background-image: url(../img/easter/ai/egg_split1.png);
}

[data-name="momoe"] .easter__split__layer1 {
  background-image: url(../img/easter/momoe/egg_split1.png);
}

[data-name="neiru"] .easter__split__layer1 {
  background-image: url(../img/easter/neiru/egg_split1.png);
}

[data-name="rika"] .easter__split__layer1 {
  background-image: url(../img/easter/rika/egg_split1.png);
}

[data-clicked="1"] .easter__split__layer1 {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}

[data-clicked="2"] .easter__split__layer1 {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}

[data-clicked="3"] .easter__split__layer1, [data-clicked="4"] .easter__split__layer1 {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

[data-name="ai"] .easter__split__layer2 {
  background-image: url(../img/easter/ai/egg_split2.png);
}

[data-name="momoe"] .easter__split__layer2 {
  background-image: url(../img/easter/momoe/egg_split2.png);
}

[data-name="neiru"] .easter__split__layer2 {
  background-image: url(../img/easter/neiru/egg_split2.png);
}

[data-name="rika"] .easter__split__layer2 {
  background-image: url(../img/easter/rika/egg_split2.png);
}

[data-clicked="1"] .easter__split__layer2 {
  -webkit-transform: translate(1px, 2px) rotate(1deg);
          transform: translate(1px, 2px) rotate(1deg);
}

[data-clicked="2"] .easter__split__layer2 {
  -webkit-transform: translate(3px, 2px) rotate(3deg);
          transform: translate(3px, 2px) rotate(3deg);
}

[data-clicked="3"] .easter__split__layer2, [data-clicked="4"] .easter__split__layer2 {
  -webkit-transform: translate(4px, 2px) rotate(4deg);
          transform: translate(4px, 2px) rotate(4deg);
}

[data-name="ai"] .easter__split__layer3 {
  background-image: url(../img/easter/ai/egg_split3.png);
}

[data-name="momoe"] .easter__split__layer3 {
  background-image: url(../img/easter/momoe/egg_split3.png);
}

[data-name="neiru"] .easter__split__layer3 {
  background-image: url(../img/easter/neiru/egg_split3.png);
}

[data-name="rika"] .easter__split__layer3 {
  background-image: url(../img/easter/rika/egg_split3.png);
}

[data-clicked="1"] .easter__split__layer3 {
  -webkit-transform: translate(-1px, 2px);
          transform: translate(-1px, 2px);
}

[data-clicked="2"] .easter__split__layer3 {
  -webkit-transform: translate(-1px, 2px) rotate(2deg);
          transform: translate(-1px, 2px) rotate(2deg);
}

[data-clicked="3"] .easter__split__layer3, [data-clicked="4"] .easter__split__layer3 {
  -webkit-transform: translate(-2px, 2px) rotate(4deg);
          transform: translate(-2px, 2px) rotate(4deg);
}

[data-name="ai"] .easter__split__layer4 {
  background-image: url(../img/easter/ai/egg_split4.png);
}

[data-name="momoe"] .easter__split__layer4 {
  background-image: url(../img/easter/momoe/egg_split4.png);
}

[data-name="neiru"] .easter__split__layer4 {
  background-image: url(../img/easter/neiru/egg_split4.png);
}

[data-name="rika"] .easter__split__layer4 {
  background-image: url(../img/easter/rika/egg_split4.png);
}

.easter__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  height: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
}

[data-name="ai"] .easter__circle {
  background-color: #ffe200;
}

[data-name="momoe"] .easter__circle {
  background-color: #57a1ff;
}

[data-name="neiru"] .easter__circle {
  background-color: #00e676;
}

[data-name="rika"] .easter__circle {
  background-color: #ff4f42;
}

@-webkit-keyframes modalEggRotateAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  3% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  6% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  8% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  10% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes modalEggRotateAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  3% {
    -webkit-transform: rotate(7deg);
            transform: rotate(7deg);
  }
  6% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  8% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  10% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@-webkit-keyframes cd-sequence {
  0% {
    -webkit-transform: translate(-2%, -50%);
            transform: translate(-2%, -50%);
  }
  100% {
    -webkit-transform: translate(-98%, -50%);
            transform: translate(-98%, -50%);
  }
}

@keyframes cd-sequence {
  0% {
    -webkit-transform: translate(-2%, -50%);
            transform: translate(-2%, -50%);
  }
  100% {
    -webkit-transform: translate(-98%, -50%);
            transform: translate(-98%, -50%);
  }
}

.easter-modal {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 0 26.6vw;
  width: 100%;
  z-index: -1;
  display: none;
}

@media (min-width: 769px) {
  .easter-modal {
    padding: 50px 0 100px;
  }
}

.easter-modal.-active {
  display: block;
  z-index: 3000;
}

.easter-modal.-bg {
  background-color: #f1f1f1;
}

.easter-modal img {
  pointer-events: none;
}

.easter-modal__liquid {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.easter-modal__liquid.-render {
  display: block;
  z-index: 5000;
}

.easter-modal__liquid__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../img/easter/common/liquid.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-2%, -50%);
          transform: translate(-2%, -50%);
  width: 2500%;
}

.-render .easter-modal__liquid__inner {
  -webkit-animation: cd-sequence 0.8s steps(24) forwards;
          animation: cd-sequence 0.8s steps(24) forwards;
}

.easter-modal__confetti {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.easter-modal__inner {
  width: 80.8vw;
}

@media (min-width: 769px) {
  .easter-modal__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 950px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    position: relative;
    width: 950px;
  }
}

.easter-modal__egg {
  position: absolute;
  top: 0;
  left: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
  width: 16.5vw;
}

@media (min-width: 769px) {
  .easter-modal__egg {
    width: 100px;
  }
}

[data-name="ai"] .easter-modal__egg {
  left: 59vw;
  top: 3vw;
}

@media (min-width: 769px) {
  [data-name="ai"] .easter-modal__egg {
    left: -85px;
    top: 150px;
  }
}

[data-name="ai"] .easter-modal__egg img {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

@media (min-width: 769px) {
  [data-name="ai"] .easter-modal__egg img {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

[data-name="neiru"] .easter-modal__egg {
  left: 59vw;
  top: 3vw;
}

@media (min-width: 769px) {
  [data-name="neiru"] .easter-modal__egg {
    left: -85px;
    top: 150px;
  }
}

[data-name="neiru"] .easter-modal__egg img {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

@media (min-width: 769px) {
  [data-name="neiru"] .easter-modal__egg img {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

[data-name="rika"] .easter-modal__egg {
  left: 3vw;
  top: 3vw;
}

@media (min-width: 769px) {
  [data-name="rika"] .easter-modal__egg {
    left: 570px;
    top: 155px;
  }
}

[data-name="rika"] .easter-modal__egg img {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

@media (min-width: 769px) {
  [data-name="rika"] .easter-modal__egg img {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

[data-name="momoe"] .easter-modal__egg {
  left: 3vw;
  top: 3vw;
}

@media (min-width: 769px) {
  [data-name="momoe"] .easter-modal__egg {
    left: 570px;
    top: 155px;
  }
}

[data-name="momoe"] .easter-modal__egg img {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

@media (min-width: 769px) {
  [data-name="momoe"] .easter-modal__egg img {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

.easter-modal__egg span {
  display: block;
  -webkit-transform-origin: 50% 98%;
          transform-origin: 50% 98%;
}

.easter-modal__egg span.-anime {
  -webkit-animation: modalEggRotateAnime 5s ease-out infinite;
          animation: modalEggRotateAnime 5s ease-out infinite;
}

.easter-modal__egg img {
  display: block;
}

@media (min-width: 769px) {
  .easter-modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    border-radius: 50%;
    height: 100%;
    width: 100%;
  }
}

.easter-modal__title {
  position: absolute;
  top: 0;
  left: 0;
}

[data-name="ai"] .easter-modal__title {
  width: 81.4vw;
}

@media (min-width: 769px) {
  [data-name="ai"] .easter-modal__title {
    left: 100px;
    top: 110px;
    width: 470px;
  }
}

[data-name="momoe"] .easter-modal__title {
  width: 87.4vw;
}

@media (min-width: 769px) {
  [data-name="momoe"] .easter-modal__title {
    left: auto;
    right: 60px;
    top: 125px;
    width: 534px;
  }
}

[data-name="neiru"] .easter-modal__title {
  width: 79.4vw;
}

@media (min-width: 769px) {
  [data-name="neiru"] .easter-modal__title {
    left: 110px;
    top: 160px;
    width: 450px;
  }
}

[data-name="rika"] .easter-modal__title {
  width: 84vw;
}

@media (min-width: 769px) {
  [data-name="rika"] .easter-modal__title {
    left: auto;
    top: 100px;
    right: 90px;
    width: 540px;
  }
}

@media (max-width: 768px) {
  .easter-modal__content {
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
  }
}

@media (max-width: 768px) {
  [data-name="ai"] .easter-modal__content {
    padding: 50.6vw 0 0 0;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}

@media (max-width: 768px) {
  [data-name="neiru"] .easter-modal__content {
    padding: 50.6vw 0 0 0;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}

@media (max-width: 768px) {
  [data-name="rika"] .easter-modal__content {
    padding: 48vw 0 0 0;
    -webkit-transform: translate(15vw, 0) rotate(8deg);
            transform: translate(15vw, 0) rotate(8deg);
  }
}

@media (max-width: 768px) {
  [data-name="momoe"] .easter-modal__content {
    padding: 48vw 0 0 0;
    -webkit-transform: translate(15vw, 0) rotate(8deg);
            transform: translate(15vw, 0) rotate(8deg);
  }
}

.easter-modal__main {
  position: relative;
}

@media (min-width: 769px) {
  .easter-modal__main {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 604px;
  }
}

@media (min-width: 769px) {
  [data-name="ai"] .easter-modal__main {
    margin-left: 60px;
  }
}

@media (min-width: 769px) {
  [data-name="neiru"] .easter-modal__main {
    margin: 30px 0 0 60px;
  }
}

@media (min-width: 769px) {
  [data-name="rika"] .easter-modal__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: 60px;
  }
}

@media (min-width: 769px) {
  [data-name="momoe"] .easter-modal__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 30px;
  }
}

.easter-modal__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #4d4d4d;
  line-height: 1.7;
  font-weight: bold;
}

@media (min-width: 769px) {
  .easter-modal__text {
    font-size: 1.125rem;
    line-height: 1.55;
    margin-bottom: 17px;
    width: 270px;
  }
}

@media (max-width: 768px) {
  .easter-modal__wpwrap {
    position: relative;
  }
}

.easter-modal__wp {
  margin-top: 15px;
  width: 62.4vw;
}

@media (max-width: 768px) {
  [data-name="rika"] .easter-modal__wp, [data-name="momoe"] .easter-modal__wp {
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .easter-modal__wp {
    margin-top: 0;
    width: 308px;
  }
}

.easter-modal__wp a {
  box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.1);
  display: block;
}

.easter-modal__wp img {
  width: 100%;
}

.easter-modal__wp__cap {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 5px;
}

@media (min-width: 769px) {
  [data-name="ai"] .easter-modal__wp__cap, [data-name="neiru"] .easter-modal__wp__cap {
    text-align: right;
  }
}

.easter-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 13.3vw;
}

@media (min-width: 769px) {
  .easter-modal__close {
    right: 40px;
    top: 30px;
    width: 80px;
  }
}

.easter-modal__att {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #1f1f1f;
  width: 100%;
}

.easter-modal__att span {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: 93.3vw;
}

@media (min-width: 769px) {
  .easter-modal__att span {
    width: 560px;
  }
}
