@charset "UTF-8";
@font-face {
  font-family: "YuGothic M";
  src: local(Yu Gothic Medium);
}
/* $main: ;
$sub: ; */
/* $sanAllWebJa: ; */
/*
$fsPhone: ;//iOS, Androidのスマートフォン向け
$fsTablet: ;//iPad, Android Tablet
$fsMobile: ;//その他モバイル製品を吸収する予約名
$fsDesk01: ;//S
$fsDesk02: ;//M
$fsDesk03: ;//L
$fsDesk04: ;//XL
$fsDesk05: ;//XXL
$fsDesk06: ;//Extra
*/
/*
	$widthDesk06: ;//Extra
*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 * http://qiita.com/tmiame/items/8816d970eacaf450911f
 */
/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
    transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
    transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
    transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
    transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  display: block;
  width: 100%;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexslider {
  border: 0;
  margin: 0px 0px 60px 0px;
  margin: 0rem 0rem 3.75rem 0rem;
  position: relative;
  zoom: 1;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  font-size: 40px;
  display: inline-block;
  content: "\f001";
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flex-direction-nav a.flex-next:before {
  content: "\f002";
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

.flex-control-nav {
  bottom: 0;
  width: 100%;
  position: absolute;
  text-align: left;
}

.flex-control-nav li {
  display: inline-block;
  *display: inline;
  margin: 0px 6px 0px 6px;
  margin: 0rem 0.375rem 0rem 0.375rem;
  zoom: 1;
}

.flex-control-paging li a {
  background: #2C82FF;
  cursor: pointer;
  height: 11px;
  height: 0.6875rem;
  display: block;
  opacity: 0.25;
  width: 11px;
  width: 0.6875rem;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #2C82FF;
  opacity: 1;
}

.flex-control-paging li a.flex-active {
  background: #2C82FF;
  cursor: default;
  opacity: 1;
}

/*
.flex-control-thumbs {
	margin: 5px 0 0;
	position: static;
	overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  word-wrap: break-word;
}

article, aside, details, dialog, figcaption, figure,
footer, header, hgroup, command, menu, nav, section, time, main {
  display: block;
}

html {
  font-size: 100%;
  line-height: 1;
  color: #333;
  font-family: Univers, "Helvetica Neue", Helvetica, Roboto, "Noto Sans", "Droid Sans", Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
html.ua-desktop-windows {
  font-weight: 500;
}
html ::-moz-selection {
  background: #666;
  color: #fff;
}
html ::selection {
  background: #666;
  color: #fff;
}
html ::-moz-selection {
  background: #666;
  color: #fff;
}

body {
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5,
p, span, strong, em,
ul, li, dl, dt, dd,
table, a {
  font-size: 1em;
}

nav, ol, ul {
  margin: 0 0 0 0;
  line-height: 1;
  list-style: none;
}

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

caption, th {
  text-align: left;
}

fieldset, img {
  border: 0;
  vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr, acronym {
  border: 0;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.wrapAll {
  min-width: 960px;
}

.itemList,
.itemList li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tagList,
.tagList li {
  display: inline-block;
  *display: inline;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.tagList li {
  background: #e5e5e5;
  border-bottom: 2px solid #e84a4a;
  color: #000;
  font-size: 14px;
  margin: 0 14px 0 0;
  padding: 2px 4px;
}

.bodyContents.js .leanModal {
  cursor: pointer;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1800px) {
  html {
    font-size: 125%;
  }
}
.hankakuAlph {
  display: inline;
  font-size: "115%";
  vertical-align: "-2%";
  font-weight: inherit;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.hankakuNum {
  display: inline;
  font-size: "115%";
  vertical-align: "-2%";
  font-weight: inherit;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.hankakuSym {
  display: inline;
  font-size: "115%";
  vertical-align: "-2%";
  font-weight: inherit;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

html {
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
html.wf-active {
  font-family: OpenSans, Univers, Helvetica Neue, Helvetica, Roboto, Noto Sans, Droid Sans, Neue Haas Grotesk, Arial, Verdana, 游ゴシック, YuGothic, YuGothic M, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, Noto Sans CJK JP, メイリオ, Meiryo, sans-serif;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  background: #f4f4f4;
  width: 100%;
  height: 100%;
}

.wrapAll {
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -o-transition-delay: 0s;
  -o-transition-duration: 650ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 650ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 650ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 650ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 650ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  opacity: 0;
  pointer-events: none;
}
.wrapAll.wrapAllLoaded {
  opacity: 1;
  pointer-events: auto;
}
.wrapAll.barbaLoaded {
  -o-transition-delay: 0s;
  -o-transition-duration: 650ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 650ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 650ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 650ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 650ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  pointer-events: auto;
}
.wrapAll_main {
  background: #f4f4f4;
  min-height: 100%;
  height: auto;
}

.headerGlobal {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerGlobal_inner {
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  position: fixed;
  z-index: 999;
  top: 1.5rem;
  left: 0;
  margin: 0;
  width: 100%;
  -webkit-box-shadow: 0.05rem 0.05rem 0.05rem 0.05rem rgba(0, 0, 0, 0.125);
  box-shadow: 0.05rem 0.05rem 0.05rem 0.05rem rgba(0, 0, 0, 0.125);
}
.headerGlobal_title {
  width: 20rem;
  height: auto;
}
.headerGlobal_anchor {
  display: block;
  padding: 1rem 1.75rem;
  width: 100%;
  height: 100%;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.headerGlobal_anchor:hover {
  opacity: 0.5;
}
.headerGlobal_anchor img {
  width: 260px;
  height: auto;
}
.headerGlobal .copyTxt {
  display: none;
}

.navGlobal {
  overflow: hidden;
}
.navGlobal_body {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.navGlobal_unit {
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  white-space: nowrap;
  letter-spacing: -0.075rem;
  margin: 0 0 0 0.5rem;
}
.navGlobal_unit.groupSearch {
  overflow: hidden;
  text-indent: -200%;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: background, bacnground-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: background, bacnground-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: background, bacnground-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: background, bacnground-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  transition-property: background, bacnground-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.navGlobal_unit.groupSearch:hover {
  background-color: #73797f;
}
.navGlobal_anchor {
  display: block;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  height: 100%;
  min-height: 100%;
  width: auto;
  font-size: 0.975rem;
  padding: 1.375rem 1rem 1.125rem 1rem;
  font-size: 1.125rem;
  text-align: center;
  border-bottom: 0.25rem solid;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.25s;
  -o-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.25s;
  -moz-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.25s;
  -ms-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.25s;
  transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  white-space: nowrap;
  word-wrap: normal;
}
.navGlobal_anchor:hover {
  color: #fff;
}
.groupGoto .navGlobal_anchor {
  border-color: #e84a4a;
}
.groupGoto .navGlobal_anchor:hover {
  color: #e84a4a;
  background-color: #f2e4e4;
}
#events .groupGoto .navGlobal_anchor, #guide .groupGoto .navGlobal_anchor, #tickets .groupGoto .navGlobal_anchor {
  color: #e84a4a;
  background-color: #f2e4e4;
}
.groupCocreation .navGlobal_anchor {
  border-color: #ffb229;
}
.groupCocreation .navGlobal_anchor:hover {
  color: #ffb229;
  background-color: #ffe6c2;
}
#cocreation .groupCocreation .navGlobal_anchor, #projects .groupCocreation .navGlobal_anchor {
  color: #ffb229;
  background-color: #ffe6c2;
}
.groupUsage .navGlobal_anchor {
  border-color: #d6955f;
}
.groupUsage .navGlobal_anchor:hover {
  color: #d6955f;
  background-color: #f2e9e4;
}
#usage .groupUsage .navGlobal_anchor {
  color: #d6955f;
  background-color: #f2e9e4;
}
.groupPhilosophy .navGlobal_anchor {
  border-color: #4dbbe2;
}
.groupPhilosophy .navGlobal_anchor:hover {
  color: #4dbbe2;
  background-color: #dfeef2;
}
#aboutus .groupPhilosophy .navGlobal_anchor {
  color: #4dbbe2;
  background-color: #dfeef2;
}
.groupSearch .navGlobal_anchor {
  width: 4.75rem;
  border-bottom: none;
  border-top: none;
  font-size: 0.875rem;
  font-weight: normal;
  background-image: url(/_assets/image/global/ui/icon_search_default.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: center center;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: background, background-image, opacity, color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: background, background-image, opacity, color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: background, background-image, opacity, color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: background, background-image, opacity, color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  transition-property: background, background-image, opacity, color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.groupSearch .navGlobal_anchor:hover {
  color: #000000;
  text-decoration: underline;
  background-image: url(/_assets/image/global/ui/icon_search_hover.svg);
}

.navSub {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: #000;
  z-index: 998;
}
.navSub_body {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.35rem 4rem 0 4rem;
}
.navSub_unit {
  font-size: 0.875rem;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: -0.1rem;
  padding: 0 0 0 0.75rem;
}
.navSub_anchor {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0 0.25rem;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: color, opacity, text-decoration;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: color, opacity, text-decoration;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: color, opacity, text-decoration;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: color, opacity, text-decoration;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  -webkit-transition-property: color, opacity, -webkit-text-decoration;
  transition-property: color, opacity, -webkit-text-decoration;
  transition-property: color, opacity, text-decoration;
  transition-property: color, opacity, text-decoration, -webkit-text-decoration;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.navSub_anchor:hover {
  text-decoration: underline;
}

.wrapContents {
  background: #f4f4f4;
}
.wrapContents_body {
  background: #e7e7e7;
  padding: 7.5rem 0 0 0;
}
.wrapContents.fadeout,
.wrapContents .fadeout {
  -o-transition-delay: 0s;
  -o-transition-duration: 650ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 650ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 650ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 650ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 650ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  z-index: 1;
}
.wrapContents.fadein,
.wrapContents .fadein {
  -o-transition-delay: 0s;
  -o-transition-duration: 650ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 650ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 650ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 650ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 650ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  z-index: 5;
}
.wrapContents .upper {
  position: relative;
  z-index: 5;
}

.bodyContents {
  background: #e7e7e7;
  padding: 64px 48px 160px 48px;
  padding: 4rem 3rem 10rem 3rem;
}

.localNav {
  -webkit-box-shadow: 0px 2px 2px 0px #bbb;
  box-shadow: 0px 2px 2px 0px #bbb;
  position: fixed;
  top: 5.3rem;
  left: 0;
  width: 100%;
  margin: 0;
  height: auto;
  color: #fff;
  text-align: center;
  font-size: 12.8px;
  font-size: 0.8rem;
  z-index: 250;
  overflow: hidden;
  border-bottom-left-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
  letter-spacing: -0.08em;
  padding: 0px 0px 0px 0px;
  padding: 0rem 0rem 0rem 0rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  white-space: nowrap;
  /*	&_unit {
  		display: block;
  		width: auto;
  		@include margin-rem(0.375,0.1,0.375,0.1);
  	}*/
}
.localNav ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.localNav a {
  font-weight: bold;
  color: #fff;
  padding: 9.2px 8.8px 9.12px 8.8px;
  padding: 0.575rem 0.55rem 0.57rem 0.55rem;
  border-radius: 0.125rem;
  margin-right: 1px;
  display: block;
  width: auto;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.localNav a:hover, .localNav a.selected {
  -o-transition-delay: 0s;
  -o-transition-duration: 0.125s;
  -o-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.125s;
  -moz-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.125s;
  -ms-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.125s;
  transition-property: color, background-color;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.localNav .no_marginRight {
  margin: 0px 1.6px 0px 5.6px;
  margin: 0rem 0.1rem 0rem 0.35rem;
}
.localNav .no_marginLeft {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 5.6px 0px 1.6px;
  margin: 0rem 0.35rem 0rem 0.1rem;
  white-space: nowrap;
}
.localNav .no_marginLeft:before {
  float: left;
  content: "｜";
  font-weight: bold;
  margin: 9.2px 3.2px 0px 3.2px;
  margin: 0.575rem 0.2rem 0rem 0.2rem;
}

.eventNav {
  background: #e84a4a;
}
.eventNav a:hover, .eventNav a.selected {
  color: #e84a4a;
  background-color: #f2e4e4;
}

.usageNav {
  background: #d6955f;
}
.usageNav a:hover, .usageNav a.selected {
  color: #d6955f;
  background-color: #f2e9e4;
}

.projectNav {
  background: #ffb229;
}
.projectNav a:hover, .projectNav a.selected {
  color: #ffb229;
  background-color: #ffe6c2;
}

.aboutusNav {
  background: #4dbbe2;
}
.aboutusNav a:hover, .aboutusNav a.selected {
  color: #4dbbe2;
  background-color: #dfeef2;
}

.newsNav {
  background: #333;
}
.newsNav a:hover, .newsNav a.selected {
  color: #333;
  background-color: #eeeeee;
}

.footerGlobal {
  padding: 24px 0px 0px 0px;
  padding: 1.5rem 0rem 0rem 0rem;
  height: auto !important;
  min-height: 394px;
  height: 394px;
  min-height: 24.625rem;
  color: #fff;
  background: #333;
}
.footerGlobal a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  color: #fff;
}
.footerGlobal a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.footerGlobal a:hover {
  border-bottom-color: #fff;
}
.footerGlobal .link_event {
  color: #e84a4a;
}
.footerGlobal .link_event:hover {
  border-color: #e84a4a;
}
.footerGlobal .link_usage {
  color: #d6955f;
}
.footerGlobal .link_usage:hover {
  border-color: #d6955f;
}
.footerGlobal .link_project {
  color: #ffb229;
}
.footerGlobal .link_project:hover {
  border-color: #ffb229;
}
.footerGlobal .link_aboutus {
  color: #4dbbe2;
}
.footerGlobal .link_aboutus:hover {
  border-color: #4dbbe2;
}
.footerGlobal .flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -o-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.footerGlobal .flex_container .flex_child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.footerGlobal .link {
  margin: 0px 56px 0px 56px;
  margin: 0rem 3.5rem 0rem 3.5rem;
}
.footerGlobal .link_head {
  padding: 0px 0px 8px 0px;
  padding: 0rem 0rem 0.5rem 0rem;
  font-weight: bold;
  font-weight: 700;
  border-bottom: 1px solid #666;
}
.footerGlobal .link_body {
  padding: 16px 0px 18px 0px;
  padding: 1rem 0rem 1.125rem 0rem;
  border-bottom: 1px solid #666;
}
.footerGlobal .link_body .body_child {
  line-height: 1.5;
}
.footerGlobal .link_foot {
  height: 45px;
  height: 2.8125rem;
  text-align: right;
}
.footerGlobal .link_foot .foot_child {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.8125rem;
}
.footerGlobal .link_foot .foot_child:before {
  content: "／";
}
.footerGlobal .link_foot .foot_child:first-child:before {
  content: "";
}
.footerGlobal .copy {
  padding: 0px 56px 0px 56px;
  padding: 0rem 3.5rem 0rem 3.5rem;
  height: 40px;
  height: 2.5rem;
  background: #000000;
  font-size: 11.2px;
  font-size: 0.7rem;
  letter-spacing: -0.05em;
  zoom: 1;
}
.footerGlobal .copy:before, .footerGlobal .copy:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.footerGlobal .copy:after {
  clear: both;
}
.footerGlobal .copy_txt {
  float: left;
  display: block;
  line-height: 2.5rem;
}
.footerGlobal .copy_address {
  float: right;
  line-height: 2.5rem;
  letter-spacing: -0.1em;
}

#shortcuts {
  background: #fff;
  -webkit-box-shadow: 0.25px 0px 8px 0px #ccc;
  box-shadow: 0.25px 0px 8px 0px #ccc;
  -o-border-bottom-left-radius: 8px;
  -o-border-top-left-radius: 8px;
  -moz-border-bottom-left-radius: 8px;
  -moz-border-top-left-radius: 8px;
  -ms-border-bottom-left-radius: 8px;
  -ms-border-top-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  margin: -224px 0px 0px 0px;
  margin: -14rem 0rem 0rem 0rem;
  padding: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 50%;
  width: 56px;
  width: 3.5rem;
  z-index: 1000;
  -o-transition-delay: 0s;
  -o-transition-duration: 650ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 650ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 650ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 650ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 650ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  pointer-events: none;
}
#shortcuts.shortcutsLoaded {
  opacity: 1;
  pointer-events: auto;
}
#shortcuts ul, #shortcuts li {
  display: block;
  margin: 0;
  padding: 0;
}
#shortcuts ul {
  padding: 4px 0px 4px 0px;
  padding: 0.25rem 0rem 0.25rem 0rem;
}
#shortcuts li {
  background: url(/_assets/image/global/ui/shortcuts/sep.png) no-repeat 50% 100%;
  /* background: url(/_assets/image/global/ui/shortcuts/sep.svg) no-repeat bottom center/40px auto; */
}
#shortcuts li:last-child {
  background: none;
}
#shortcuts a {
  display: block;
  height: 44.8px;
  height: 2.8rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  text-indent: -400%;
  width: 56px;
  width: 3.5rem;
  opacity: 1;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
#shortcuts a:hover {
  opacity: 0.5;
}

.mailer input, .mailer button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 1.6px 4px 1.6px 4px;
  padding: 0.1rem 0.25rem 0.1rem 0.25rem;
  vertical-align: middle;
}
.mailer button {
  border-radius: 4px;
  background: #2C82FF;
  color: #fff;
  font-size: 12.8px;
  font-size: 0.8rem;
  margin: 0px 0px 0px 3.2px;
  margin: 0rem 0rem 0rem 0.2rem;
}

#qgeki-top a {
  background: url(/_assets/image/global/ui/shortcuts/go2top.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/go2top.svg) no-repeat 50% 50%/28px auto;
}

#qgeki-bottom a {
  background: url(/_assets/image/global/ui/shortcuts/go2bottom.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/go2bottom.svg) no-repeat 50% 50%/28px auto;
}

#qgeki-tickets a {
  background: url(/_assets/image/global/ui/shortcuts/chart.png) no-repeat 45% 50%;
  background: url(/_assets/image/global/ui/shortcuts/chart.svg) no-repeat 45% 50%/31px auto;
}

#qgeki-instagram a {
  background: url(/_assets/image/global/ui/shortcuts/instagram.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/instagram.svg) no-repeat 50% 50%/32px auto;
}

#qgeki-facebook a {
  background: url(/_assets/image/global/ui/shortcuts/facebook.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/facebook.svg) no-repeat 50% 50%/32px auto;
}

#qgeki-twitter a {
  background: url(/_assets/image/global/ui/shortcuts/twitter.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/twitter.svg) no-repeat 50% 50%/32px auto;
}

#qgeki-youtube a {
  background: url(/_assets/image/global/ui/shortcuts/youtube.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/youtube.svg) no-repeat 50% 50%/32px auto;
}

#qgeki-line a {
  background: url(/_assets/image/global/ui/shortcuts/line.png) no-repeat 50% 50%;
  background: url(/_assets/image/global/ui/shortcuts/line.svg) no-repeat 50% 50%/32px auto;
}

.qgeki_hidden {
  height: 1px !important;
  left: -9999px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  text-indent: 2px !important;
  top: -9999px !important;
  width: 1px !important;
  white-space: nowrap !important;
}

@media screen and (min-width: 960px) {
  .bodyContents {
    background: #e7e7e7;
    padding: 64px 80px 160px 80px;
    padding: 4rem 5rem 10rem 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .wrapAll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    -o-flex-flow: row nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row nowrap;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .wrapAll_menu {
    position: relative;
    min-width: 160px;
    min-width: 10rem;
    max-width: 160px;
    max-width: 10rem;
    width: 160px;
    width: 10rem;
    background: #fff;
    z-index: 1000;
  }
  .wrapAll_main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .headerGlobal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 10rem;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 0.25px 0px 8px 0px #ccc;
    box-shadow: 0.25px 0px 8px 0px #ccc;
  }
  .headerGlobal_inner {
    display: block;
    position: static;
    z-index: 1;
    padding: 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .headerGlobal_title {
    width: 100%;
    height: 7rem;
    padding: 0;
    overflow: hidden;
  }
  .headerGlobal_anchor {
    position: relative;
    padding: 0 1rem;
  }
  .headerGlobal_logo {
    position: absolute;
    top: 50%;
    margin-top: -1.5rem;
    margin-left: -1rem;
    padding: 0 1rem;
    height: auto;
    width: 100% !important;
  }
  .headerGlobal .copyTxt {
    letter-spacing: -0.05rem;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: scale(0.55);
    transform: scale(0.55);
    position: fixed;
    bottom: 1rem;
    left: 1rem;
  }
  .headerGlobal .copyTxt .copyTxt_author {
    display: block;
  }
  .navGlobal_body {
    display: block;
  }
  .navGlobal_unit {
    font-variant-east-asian: proportional-width;
    font-variant-numeric: proportional-nums;
    font-variant: normal;
    -webkit-font-feature-settings: "palt", "lnum";
    font-feature-settings: "palt", "lnum";
    margin: 0 0 0 0;
    padding: 0 0 0.5rem 0;
  }
  .navGlobal_unit.groupSearch {
    margin: 1rem 0 0 0;
    text-indent: 0;
  }
  .navGlobal_unit.groupSearch:hover {
    background: #fff;
  }
  .navGlobal_unit.groupSearch:before {
    content: " ";
    display: block;
    width: 1rem;
    height: 1px;
    height: 0.0625rem;
    margin: 0 0 0 1rem;
    background: #000000;
  }
  .navGlobal_anchor {
    width: 100%;
    padding: 0 1rem 0.75rem 1rem;
    border-bottom: none;
    text-align: left;
    -o-transition-delay: 0s;
    -o-transition-duration: 0.125s;
    -o-transition-property: color;
    /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
    -moz-transition-delay: 0s;
    -moz-transition-duration: 0.125s;
    -moz-transition-property: color;
    /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
    -ms-transition-delay: 0s;
    -ms-transition-duration: 0.125s;
    -ms-transition-property: color;
    /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
    -webkit-transition-delay: 0s;
    -webkit-transition-duration: 0.125s;
    -webkit-transition-property: color;
    /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
    transition-delay: 0s;
    transition-duration: 0.125s;
    transition-property: color;
    /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
    font-size: 16px;
    font-size: 1rem;
  }
  .groupSearch .navGlobal_anchor {
    padding: 0 8.125rem 0.75rem 0;
    margin: 0 1rem;
    border-bottom: none;
    border-top: none;
    font-size: 0.875rem;
    font-weight: normal;
    background-size: 1rem 1rem;
    background-position: center right;
  }
  .groupSearch .navGlobal_anchor:hover {
    opacity: 0.5;
    color: #000000;
    background-image: url(/_assets/image/global/ui/icon_search_default.svg);
  }
  .navGlobal_anchor:hover {
    color: #000000;
  }
  .navGlobal_anchor:before {
    content: " ";
    display: block;
    width: 100%;
    height: 0.25rem;
    margin: 0 0 0.5rem 0;
  }
  .groupGoto .navGlobal_anchor:before {
    background-color: #e84a4a;
  }
  .groupGoto .navGlobal_anchor:hover {
    color: #e84a4a;
  }
  .groupCocreation .navGlobal_anchor:before {
    background-color: #ffb229;
  }
  .groupCocreation .navGlobal_anchor:hover {
    color: #ffb229;
  }
  .groupUsage .navGlobal_anchor:before {
    background-color: #d6955f;
  }
  .groupUsage .navGlobal_anchor:hover {
    color: #d6955f;
  }
  .groupPhilosophy .navGlobal_anchor:before {
    background-color: #4dbbe2;
  }
  .groupPhilosophy .navGlobal_anchor:hover {
    color: #4dbbe2;
  }
  .navSub {
    background: transparent;
    position: static;
    width: auto;
    height: auto;
    z-index: 2;
  }
  .navSub_body {
    display: block;
    padding: 0;
  }
  .navSub:before {
    content: " ";
    display: block;
    width: 1rem;
    height: 1px;
    height: 0.0625rem;
    margin: 0.5rem 0 0.5rem 1rem;
    background: #000000;
  }
  .navSub_unit {
    margin: 0 0 0.75rem 0;
  }
  .navSub_anchor {
    color: #000000;
    text-decoration: none;
  }
  .navSub_anchor:hover {
    opacity: 0.5;
    color: #000000;
  }
  .wrapContents_body {
    padding: 0 0 0 0;
  }
  .bodyContents {
    background: #e7e7e7;
    padding: 64px 112px 160px 112px;
    padding: 4rem 7rem 10rem 7rem;
  }
  .localNav {
    font-size: 14.4px;
    font-size: 0.9rem;
    font-weight: normal;
    top: 0;
    left: 0;
    width: calc(100% - 10rem);
    height: auto;
    margin: 0px 0px 0px 160px;
    margin: 0rem 0rem 0rem 10rem;
    padding: 9.6px 0px 8px 0px;
    padding: 0.6rem 0rem 0.5rem 0rem;
    /*		&_unit {
    			// line-height: 3rem;
    			@include margin-rem(0.375,0.55,0.375,0.55);
    		}*/
  }
  .ua-desktop-windows .localNav {
    font-weight: 500;
  }
  .localNav ul {
    display: block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
  .localNav li {
    display: inline-block;
    vertical-align: top;
  }
  .localNav a {
    padding: 9.2px 8.8px 9.12px 8.8px;
    padding: 0.575rem 0.55rem 0.57rem 0.55rem;
    border-radius: 0.125rem;
    margin-right: 1px;
  }
  .localNav .no_marginLeft:before {
    margin: 9.2px 6.4px 0px 0px;
    margin: 0.575rem 0.4rem 0rem 0rem;
  }
}
#qgeki_spinner {
  display: block;
  height: 2rem;
  left: 50%;
  margin: 16px 0 0 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2rem;
  z-index: 9999;
}
#qgeki_spinner .uil-rolling-css,
#qgeki_spinner img {
  display: block;
  float: none;
  height: 2rem;
  margin: 0;
  position: relative;
  width: 2rem;
}

@media screen and (min-width: 1200px) {
  #qgeki_spinner {
    margin: 16px 0 0 80px;
  }
  #qgeki_spinner.firstLoad {
    margin: -24px 0 0 0;
  }
}
@media screen and (min-width: 1600px) {
  .bodyContents {
    background: #e7e7e7;
    padding: 64px 144px 160px 144px;
    padding: 4rem 9rem 10rem 9rem;
  }
}
.progress-bar {
  left: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  top: -4px;
  width: 100%;
  z-index: 999;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.1s;
  -o-transition-property: top;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.1s;
  -moz-transition-property: top;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.1s;
  -ms-transition-property: top;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-property: top;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.1s;
  transition-property: top;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}

.bar {
  background-color: #2C82FF;
}

.bar:after {
  -webkit-box-shadow: 0 0 4px 3px #2C82FF;
  box-shadow: 0 0 4px 3px #2C82FF;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
}

.loading .progress-bar {
  top: 0;
}
.loading .qgeki-active {
  -webkit-animation: 1.5s ease-in-out 0s normal none infinite pulsate;
  animation: 1.5s ease-in-out 0s normal none infinite pulsate;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  50% {
    -webkit-box-shadow: 0 0 2px 1px #278DBA;
    box-shadow: 0 0 2px 1px #278DBA;
  }
  100% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@keyframes pulsate {
  0% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  50% {
    -webkit-box-shadow: 0 0 2px 1px #278DBA;
    box-shadow: 0 0 2px 1px #278DBA;
  }
  100% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@-webkit-keyframes caldefpulser {
  0% {
    background: rgb(44, 130, 255);
  }
  50% {
    background: rgba(44, 130, 255, 0.75);
  }
  100% {
    background: rgb(44, 130, 255);
  }
}
@keyframes caldefpulser {
  0% {
    background: rgb(44, 130, 255);
  }
  50% {
    background: rgba(44, 130, 255, 0.75);
  }
  100% {
    background: rgb(44, 130, 255);
  }
}
@-webkit-keyframes calplaypulser {
  0% {
    background: rgb(232, 74, 74);
  }
  50% {
    background: rgba(232, 74, 74, 0.75);
  }
  100% {
    background: rgb(232, 74, 74);
  }
}
@keyframes calplaypulser {
  0% {
    background: rgb(232, 74, 74);
  }
  50% {
    background: rgba(232, 74, 74, 0.75);
  }
  100% {
    background: rgb(232, 74, 74);
  }
}
@-webkit-keyframes calgallerypulser {
  0% {
    background: rgb(161, 168, 173);
  }
  50% {
    background: rgba(161, 168, 173, 0.75);
  }
  100% {
    background: rgb(161, 168, 173);
  }
}
@keyframes calgallerypulser {
  0% {
    background: rgb(161, 168, 173);
  }
  50% {
    background: rgba(161, 168, 173, 0.75);
  }
  100% {
    background: rgb(161, 168, 173);
  }
}
@-webkit-keyframes uil-rolling-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-rolling-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-rolling-css {
  float: left;
  margin: 0 1rem 0 0;
  position: relative;
}
.uil-rolling-css img {
  display: block;
  -webkit-animation: uil-rolling-anim 1.5s linear infinite;
  animation: uil-rolling-anim 1.5s linear infinite;
}

.wysiwyg .wysiwyg_body {
  zoom: 1;
}
.wysiwyg .wysiwyg_body:before, .wysiwyg .wysiwyg_body:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.wysiwyg .wysiwyg_body:after {
  clear: both;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5 {
  font-weight: normal;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  margin: 0px 0px 12px 0px;
  margin: 0em 0em 0.75em 0em;
  letter-spacing: -0.075em;
}
.ua-desktop-windows .wysiwyg h1, .ua-desktop-windows .wysiwyg h2, .ua-desktop-windows .wysiwyg h3, .ua-desktop-windows .wysiwyg h4, .ua-desktop-windows .wysiwyg h5 {
  font-weight: 500;
}
.wysiwyg h2 {
  font-size: 1.25em;
  letter-spacing: 0.1em;
  margin: 0px 0px 20px 0px;
  margin: 0em 0em 1.25em 0em;
}
.wysiwyg h2 + p {
  margin: 0px 0px 56px 0px;
  margin: 0em 0em 3.5em 0em;
  line-height: 2;
}
.wysiwyg h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
}
.ua-desktop-windows .wysiwyg h3 {
  font-weight: 500;
}
.wysiwyg h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 0px 0px 8px 0px;
  margin: 0em 0em 0.5em 0em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #c8eced));
  background: -webkit-linear-gradient(transparent 60%, #c8eced 0%);
  background: linear-gradient(transparent 60%, #c8eced 0%);
  display: inline;
}
.wysiwyg h4 + p {
  margin: 12px 0px 0px 0px;
  margin: 0.75em 0em 0em 0em;
}
.wysiwyg h4:before {
  content: ".";
  display: block;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: -32px 0px 0px 0px;
  margin: -2em 0em 0em 0em;
  padding: 0;
  visibility: hidden;
  width: 100%;
}
.wysiwyg h4:after {
  content: ".";
  display: block;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0px 0px 12px 0px;
  margin: 0em 0em 0.75em 0em;
  padding: 0;
  visibility: hidden;
  width: 100%;
}
.wysiwyg h5 {
  font-size: 0.875em;
  font-weight: bold;
  margin: 20px 0px 5.6px 0px;
  margin: 1.25em 0em 0.35em 0em;
}
.wysiwyg p {
  line-height: 1.75;
  margin: 0px 0px 32px 0px;
  margin: 0em 0em 2em 0em;
  text-align: justify;
}
.wysiwyg p + h4 {
  margin-top: -1.75em;
}
.wysiwyg p a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.wysiwyg p a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.wysiwyg ul, .wysiwyg ol {
  margin: 0px 0px 32px 0px;
  margin: 0em 0em 2em 0em;
}
.wysiwyg li {
  line-height: 1.75;
}
.wysiwyg li a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.wysiwyg li a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg ul li:before {
  content: "・";
  display: inline-block;
  margin: 0 0 0 -1em;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  width: 1em;
}
.wysiwyg img {
  max-width: 100%;
  height: auto;
}
.wysiwyg table {
  width: 100%;
}
.wysiwyg table th {
  padding: 16px 16px 16px 32px;
  padding: 1rem 1rem 1rem 2rem;
  background: #F5E4D7;
  border-bottom: 1px dashed #999;
  line-height: 1.5;
  vertical-align: top;
}
.wysiwyg table thead th {
  background: #E84A4A;
  font-weight: bold;
  font-weight: 700;
  color: #fff;
}
.wysiwyg table td {
  padding: 16px 16px 16px 32px;
  padding: 1rem 1rem 1rem 2rem;
  border-bottom: 1px dashed #999;
  line-height: 1.5;
  vertical-align: top;
}
.wysiwyg .vertical_border th, .wysiwyg .vertical_border td {
  border-right: 1px dashed #999;
}
.wysiwyg .vertical_border th:last-child, .wysiwyg .vertical_border td:last-child {
  border-right: none;
}
.bodyMain .flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -o-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.bodyMain .title {
  padding: 0px 0px 32px 32px;
  padding: 0rem 0rem 2rem 2rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
}
.ua-desktop-windows .bodyMain .title {
  font-weight: 500;
}
.bodyMain .title_date {
  letter-spacing: -0.05rem;
}
.bodyMain .title_date i {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-weight: 700;
  font-style: normal;
  margin: 0px 0px 0px -0.8px;
  margin: 0rem 0rem 0rem -0.05rem;
}
.bodyMain .title_date_weekday {
  font-size: 20px;
  font-size: 1.25rem;
}
.bodyMain .title .small {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  font-weight: 700;
  vertical-align: middle;
}
.bodyMain .subtitle {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background: #000;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  display: block;
  line-height: 1.3;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 10px 0px 0px 0px;
  padding: 0.625rem 0rem 0rem 0rem;
  overflow: hidden;
  position: relative;
  text-indent: 32px;
  text-indent: 2rem;
  white-space: nowrap;
  width: 100%;
}
.bodyMain .subtitle i, .bodyMain .subtitle:after {
  background: transparent url(/_assets/image/global/ui/border/tab-white.svg) no-repeat 16px 0/9999px auto;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTk5OSIgaGVpZ2h0PSI1NiIgdmlld0JveD0iMCAwIDk5OTkgNTYiPg0KICA8ZGVmcz4NCiAgICA8c3ltYm9sIGlkPSJjM2M4MGIyMi1mZWQxLTQ4MjItYWEzMy1hODFmZWQ4ZjQyNDYiIGRhdGEtbmFtZT0iYmdfaGVhZDIiIHZpZXdCb3g9IjAgMCAyMzkuOTUgNTYiPg0KICAgICAgPHBhdGggZD0iTTE5Niw1NkgwVjBIMjM5Ljk1VjhoMGE4LDgsMCwwLDAtNi40LDMuMmwtMzEuMiw0MS42QTgsOCwwLDAsMSwxOTYsNTZaIiBmaWxsPSIjZmZmIi8+DQogICAgPC9zeW1ib2w+DQogIDwvZGVmcz4NCiAgPGcgaWQ9IjdjMGI4MDZjLTA0MjEtNDQ1MC1hYTdjLWVkMDI2Y2RmZTYxMSI+DQogICAgPHJlY3Qgd2lkdGg9Ijk5OTkiIGhlaWdodD0iNTUiIGZpbGw9IiMwMDAwMDAiLz4NCiAgICA8cmVjdCB3aWR0aD0iOTc5OSIgaGVpZ2h0PSI1NSIgZmlsbD0iI0ZGRkZGRiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQwIDApIi8+DQogICAgPHVzZSB3aWR0aD0iMjM5Ljk1IiBoZWlnaHQ9IjU2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNTUgNTYpIHJvdGF0ZSgxODApIHNjYWxlKDEuMDYgMSkiIHhsaW5rOmhyZWY9IiNjM2M4MGIyMi1mZWQxLTQ4MjItYWEzMy1hODFmZWQ4ZjQyNDYiLz4NCiAgPC9nPg0KPC9zdmc+DQo=") no-repeat 16px 0/9999px auto;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  content: " ";
  display: inline-block;
  height: 48px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}
.bodyMain .subtitle.adjusted {
  padding: 8px 0px 0px 0px;
  padding: 0.5rem 0rem 0rem 0rem;
  text-indent: 0;
}
.bodyMain .subtitle.adjusted span {
  display: block;
  float: left;
  line-height: 1.3;
  height: 48px;
  height: calc(48px - 0.125rem);
  padding: 2px 0px 0px 0px;
  padding: 0.125rem 0rem 0rem 0rem;
  text-indent: 32px;
  text-indent: 2rem;
  width: auto;
}
.bodyMain .subtitle.adjusted:after {
  display: none;
}
.bodyMain .subtitle .brackets {
  font-size: 0.75em;
}
.bodyMain .subtitle a {
  background: url(/_assets/image/global/ui/arrow/icon_arrow_more_usage.svg) no-repeat 100% 50%/1rem auto;
  bottom: 0;
  color: #2c82ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  padding: 0px 16px 0px 0px;
  padding: 0rem 1rem 0rem 0rem;
  position: absolute;
  right: 28px;
  right: 1.75rem;
  line-height: 2;
  text-indent: 0;
}
.ua-desktop-windows .bodyMain .subtitle a {
  font-weight: 500;
}
.bodyMain .arrow {
  display: block;
  background: url(/_assets/image/global/ui/arrow/icon_arrow_flow.svg) no-repeat;
  text-indent: -200%;
  white-space: nowrap;
  overflow: hidden;
}
.bodyMain .pad {
  margin: 32px 32px 32px 32px;
  margin: 2rem 2rem 2rem 2rem;
  line-height: 1.75;
}
.bodyMain .pad table {
  border-top: 1px solid #999;
}
.bodyMain .scroll_nav {
  clear: both;
  margin: 0px 32px 16px 32px;
  margin: 0rem 2rem 1rem 2rem;
  height: auto !important;
  min-height: 48px;
  height: 48px;
  min-height: 3rem;
  padding: 8px 0px 4px 0px;
  padding: 0.5rem 0rem 0.25rem 0rem;
  background: #e8e8e8;
  overflow: hidden;
}
.bodyMain .scroll_nav .scroll {
  border-left: 2px solid #2c82ff;
  border-right: 2px solid #2c82ff;
}
.bodyMain .scroll_nav .scroll_child {
  display: inline-block;
  height: 32px;
  height: 2rem;
  border-right: 1px dashed #2c82ff;
}
.bodyMain .scroll_nav .scroll_link {
  display: block;
  color: #2C82FF;
  padding: 0px 14px 0px 36px;
  padding: 0rem 0.875rem 0rem 2.25rem;
  background: url(/_assets/image/global/ui/arrow/icon_arrow_scroll.png) no-repeat 12px 50%;
  background: url(/_assets/image/global/ui/arrow/icon_arrow_scroll.svg) no-repeat 0.8rem center/auto 1.25rem;
  font-weight: bold;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  line-height: 2rem;
  opacity: 1;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.bodyMain .scroll_nav .scroll_link:hover {
  opacity: 0.5;
}
.bodyMain .scroll_nav .scroll_link:hover {
  border: 0;
  opacity: 0.5;
}
.bodyMain .scroll_nav .scroll_child:last-child {
  border: none;
}

.layoutRelatedLinks .bodyMain a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutRelatedLinks .bodyMain a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}

.layoutFaq .bodyMain {
  padding: 32px 0px 128px 0px;
  padding: 2rem 0rem 8rem 0rem;
  background: #fff;
}
.layoutFaq .bodyMain .faq_block {
  margin: 0px 0px 64px 0px;
  margin: 0rem 0rem 4rem 0rem;
  position: relative;
}
.layoutFaq .bodyMain .faq_block .faq {
  cursor: pointer;
  margin: 16px 16px 0px 32px;
  margin: 1rem 1rem 0rem 2rem;
  border-bottom: 1px dotted #d9d9d9;
  line-height: 1.75;
}
.layoutFaq .bodyMain .faq_block .faq_question {
  padding: 0px 24px 0px 0px;
  padding: 0rem 1.5rem 0rem 0rem;
  font-size: 20px;
  font-size: 1.25rem;
  background: #fff;
  color: #2c82ff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutFaq .bodyMain .faq_block .faq_question:before {
  content: "Q";
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 96px;
  width: 6rem;
  min-height: 5rem;
  background: url(/_assets/image/global/ui/icon_faq_q.svg) #fff no-repeat center top;
  background-size: 4rem;
  text-indent: -200%;
  white-space: nowrap;
  overflow: hidden;
}
.layoutFaq .bodyMain .faq_block .faq_question .q_text {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100% - 6rem);
  min-height: 4rem;
  padding: 8px 16px 12px 12px;
  padding: 0.5rem 1rem 0.75rem 0.75rem;
  background: #fff;
}
.layoutFaq .bodyMain .faq_block .faq_question:hover {
  opacity: 0.5;
}
.layoutFaq .bodyMain .faq_block .faq_answer {
  margin: 0px 0px 0px 104px;
  margin: 0rem 0rem 0rem 6.5rem;
  padding: 0px 24px 0px 0px;
  padding: 0rem 1.5rem 0rem 0rem;
  background: #bbc0c4;
  color: #000000;
}
.layoutFaq .bodyMain .faq_block .faq_answer:before {
  content: "A";
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 96px;
  width: 6rem;
  min-height: 6rem;
  background: url(/_assets/image/global/ui/icon_faq_a.svg) #fce9e9 no-repeat center 1rem;
  background-size: 4rem;
  text-indent: -200%;
  white-space: nowrap;
  overflow: hidden;
}
.layoutFaq .bodyMain .faq_block .faq_answer .a_text {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100% - 6rem);
  min-height: 4rem;
  padding: 12px 16px 12px 12px;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  background: #fce9e9;
}
.layoutFaq .bodyMain .faq_block .faq_answer .a_text a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutFaq .bodyMain .faq_block .faq_answer .a_text a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.layoutFaq .bodyMain .faq_block .faq .open {
  position: relative;
}
.layoutFaq .bodyMain .faq_block .faq .open:after {
  background: url(/_assets/image/global/ui/arrow/icon_arrow_faq_up.svg) #73797F no-repeat right 0.25rem center;
  background-size: 1rem;
  bottom: 0;
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  width: 1.5rem;
}
.layoutFaq .bodyMain .faq_block .faq .close {
  position: relative;
}
.layoutFaq .bodyMain .faq_block .faq .close:after {
  background: url(/_assets/image/global/ui/arrow/icon_arrow_faq_down.svg) #2C82FF no-repeat right 0.25rem center;
  background-size: 1rem;
  bottom: 0;
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  width: 1.5rem;
}

html, body {
  background: transparent;
}

.wrapAll_main {
  background: transparent;
}

.wrapContents {
  background: transparent;
  position: relative;
}

.wrapGen {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.wrapGen canvas {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1200px) {
  .wrapGen {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 10rem);
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }
  .wrapGen canvas {
    width: 100%;
    height: auto;
  }
}
.table {
  display: block;
  border-collapse: collapse;
  width: 100%;
}

.tr {
  overflow: hidden;
}

.th, .td {
  float: left;
  vertical-align: top;
}

.thead .tr {
  border-top: 2px solid #a1a8ad;
  border-bottom: 1px solid #a1a8ad;
}
.thead .th {
  padding-top: 0;
  padding-bottom: 0;
}

.th {
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  margin: 0;
  padding: 0;
  position: relative;
}
.th:before {
  border-left: 1px solid #a1a8ad;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  height: 4px;
  left: 2px;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 1px;
}
.th:first-child:before {
  display: none;
}

.tbody .tr {
  background: url(/_assets/image/global/ui/border/side_dotted_grey.png) repeat-x 0 100%;
}
.tbody .eventItem_place {
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: bold;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.td {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 12px 0px 12px 0px;
  padding: 0.75rem 0rem 0.75rem 0rem;
  line-height: 1.6;
  vertical-align: top;
}
.td .place {
  line-height: 1.3;
  padding: 4px 0px 0px 0px;
  padding: 0.25rem 0rem 0rem 0rem;
}
.td .ico {
  float: left;
  display: block;
  margin: 1px 1px 0px 0px;
  margin: 0.0625rem 0.0625rem 0rem 0rem;
}

.noevents {
  border-top: 1px solid #a1a8ad;
  margin: 0;
  padding: 128px 0px 0px 0px;
  padding: 8rem 0rem 0rem 0rem;
  text-align: center;
}
.noevents p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  font-weight: 700;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
}

.entryParts_recruit .eventItem_metas {
  width: auto;
  width: calc(100% - 33rem);
}

.eventItem a {
  display: block;
  overflow: auto;
}
.eventItem .link {
  background: url(/_assets/image/global/ui/arrow/icon_arrow_more_usage.svg) no-repeat 100% 50%/1.5rem auto;
  color: #000000;
  display: block;
  overflow: auto;
  text-decoration: none;
  opacity: 1;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.eventItem .link:hover {
  opacity: 0.5;
}
.eventItem .link .eventItem_metas {
  color: #2C82FF;
  font-weight: bold;
  font-weight: 700;
}
.eventItem .link .tag {
  color: #fff;
}
.eventItem .link:hover {
  opacity: 0.5;
}
.eventItem .tag {
  color: #fff;
  background: #000000;
  border-radius: 2px;
  font-size: 9.6px;
  font-size: 0.6rem;
  font-weight: bold;
  font-weight: 700;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  display: inline-block;
  *display: inline;
  line-height: 1.5;
  padding: 1.2px 4px 0px 4px;
  padding: 0.075rem 0.25rem 0rem 0.25rem;
  white-space: nowrap;
}
.eventItem_placetime {
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  min-width: 192px;
  min-width: 12rem;
  max-width: 192px;
  max-width: 12rem;
  width: 192px;
  width: 12rem;
}
.eventItem_placetime .time,
.eventItem_placetime .place {
  display: block;
}
.eventItem_placetime .time {
  font-weight: bold;
  font-weight: 700;
}
.eventItem_place {
  color: #000000;
  min-width: 176px;
  min-width: 11rem;
  max-width: 176px;
  max-width: 11rem;
  width: 176px;
  width: 11rem;
}
.eventItem_time {
  color: #000000;
  min-width: 128px;
  min-width: 8rem;
  max-width: 128px;
  max-width: 8rem;
  width: 128px;
  width: 8rem;
}
.eventItem_metas {
  width: auto;
  width: calc(100% - 32rem);
}
.eventItem_metas .eventItem_title {
  /* float: left; */
  font-size: 16px;
  font-size: 1rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  padding: 0px 16px 0px 0px;
  padding: 0rem 1rem 0rem 0rem;
}
.eventItem_metas .eventItem_title .eventItem_titleMain {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}
.eventItem_metas .eventItem_title .eventItem_titleSub {
  font-size: 10.4px;
  font-size: 0.65rem;
  font-weight: normal;
  display: block;
}
.ua-desktop-windows .eventItem_metas .eventItem_title .eventItem_titleSub {
  font-weight: 500;
}
.eventItem_metas ul, .eventItem_metas li {
  display: block;
  margin: 0;
  padding: 0;
}
.eventItem_metas ul {
  float: left;
  margin: 2px 0px 0px 0px;
  margin: 0.125rem 0rem 0rem 0rem;
  padding: 0px 8px 0px 0px;
  padding: 0rem 0.5rem 0rem 0rem;
}
.eventItem_metas li {
  margin: 3.2px 0px 0px 0px;
  margin: 0.2rem 0rem 0rem 0rem;
}
.eventItem_range {
  overflow: auto;
  background: url(/_assets/image/global/ui/arrow/icon_arrow_more_usage.svg) no-repeat 100% 50%/1.5rem auto;
}
.eventItem_range:after {
  background: url(/_assets/image/global/ui/border/side_dotted_grey.png) repeat-x 0 100%;
  display: block;
  content: " ";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.eventItem_range:last-child:after {
  background: none;
}
.eventItem_range .eventItem_metas {
  width: auto;
}
.eventItem_sales {
  min-width: 144px;
  min-width: 9rem;
  max-width: 144px;
  max-width: 9rem;
  width: 144px;
  width: 9rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
}
.eventItem_sales span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
.eventItem_sales span.label {
  display: block;
  font-size: 11px;
  font-weight: bold;
}
.eventItem_sales .past {
  color: #e84a4a;
}
.eventItem_sales .past .time {
  color: #000000;
  opacity: 0.25;
  text-decoration: line-through;
}
.eventItem_discounts {
  padding: 12px 32px 12px 0px;
  padding: 0.75rem 2rem 0.75rem 0rem;
  min-width: 144px;
  min-width: 9rem;
  max-width: 144px;
  max-width: 9rem;
  width: 144px;
  width: 9rem;
}
.eventItem_intend {
  padding: 12px 32px 12px 0px;
  padding: 0.75rem 2rem 0.75rem 0rem;
  min-width: 192px;
  min-width: 12rem;
  max-width: 192px;
  max-width: 12rem;
  width: 192px;
  width: 12rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
}

.entryParts_daily .tbody .tr {
  background: none;
  border-top: 2px solid #a1a8ad;
  position: relative;
}
.entryParts_daily .tbody .tr .link {
  background: none;
  padding: 0px 0px 0px 176px;
  padding: 0rem 0rem 0rem 11rem;
}
.entryParts_daily .tbody .tr .eventItem_place {
  left: 0;
  padding: 12px 8px 0px 0px;
  padding: 0.75rem 0.5rem 0rem 0rem;
  position: absolute;
  font-size: 16px;
  font-size: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  top: 0;
}
.entryParts_daily .tbody .tr:first-child {
  border-top: 0;
}

.headerGlobal {
  z-index: 999;
}

.modalized {
  overflow: hidden;
}

#lean_overlay {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  overflow: scroll;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 750;
}
#lean_overlay .scroller {
  left: -1px;
  height: 50%;
  position: relative;
  overflow: hidden;
  width: 1px;
}

.qgekiModal_main {
  display: none;
  -o-transition-delay: 0s;
  -o-transition-duration: 0.05s;
  -o-transition-property: transform;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 0.05s;
  -moz-transition-property: transform;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 0.05s;
  -ms-transition-property: transform;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 0.05s;
  -webkit-transition-property: transform;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 0.05s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}

.qgekiModal_close {
  right: 36.8px;
  right: 2.3rem;
  position: absolute;
  top: 36.8px;
  top: 2.3rem;
}

.qgekiModal_button {
  background: url(/_assets/image/global/ui/arrow/modal_close.png) no-repeat 50% 0;
  background: url(/_assets/image/global/ui/arrow/modal_close.svg) no-repeat 50% 0/3rem auto;
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: bold;
  font-weight: 700;
  margin: 0;
  padding: 51.2px 0px 0px 0px;
  padding: 3.2rem 0rem 0rem 0rem;
  text-align: center;
  vertical-align: top;
  width: 48px;
  width: 3rem;
  opacity: 1;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.qgekiModal_button:hover {
  opacity: 0.5;
}
.qgekiModal_button:hover {
  opacity: 0.5;
}

.qgekiModal_main .title {
  font-size: 32px;
  font-size: 2rem;
  margin: 0;
  padding: 0px 0px 16px 0px;
  padding: 0rem 0rem 1rem 0rem;
}
.qgekiModal_main .bodyContents {
  background: #fff;
  margin: 0;
  padding: 0;
}
.qgekiModal_main .bodyContents .bodyMain_header {
  padding: 0px 32px 24px 32px;
  padding: 0rem 2rem 1.5rem 2rem;
}
.qgekiModal_main .bodyContents .bodyMain_header header {
  padding: 0;
}
.qgekiModal_main .bodyContents .bodyMain_header .crown {
  left: -16px;
  left: -1rem;
}
.qgekiModal_main .bodyContents .bodyMain_content .entry {
  padding: 0px 32px 0px 32px;
  padding: 0rem 2rem 0rem 2rem;
  overflow: hidden;
}
.qgekiModal_main .bodyContents .bodyMain_content .entry .subtitle {
  margin: 0px -32px 16px -32px;
  margin: 0rem -2rem 1rem -2rem;
}
.qgekiModal_main .bodyContents .bodyMain_sidebar {
  background: #fff;
}
.qgekiModal_main .bodyContents .bodyMain_sidebar .side {
  background: #fff;
}
.qgekiModal_main .pdf {
  padding: 16px 0px 16px 0px;
  padding: 1rem 0rem 1rem 0rem;
}
.qgekiModal_main .pdf a {
  color: #2C82FF;
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  height: 24px;
  height: 1.5rem;
  padding: 0px 0px 0px 25px;
  padding: 0rem 0rem 0rem 1.5625rem;
  background: url(/_assets/image/global/ui/icon_pdf.svg) no-repeat left center;
  background-size: 18px auto;
  line-height: 1.5;
}
.qgekiModal_main .standalone_image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 56.25% 0 0 0;
  overflow: hidden;
  position: relative;
  display: none;
}
.qgekiModal_main .standalone_image img {
  height: 100%;
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}
.qgekiModal_main .standalone_image:first-child {
  display: block;
}
.qgekiModal_main .standalone_image.portraitImage {
  background-size: contain;
}
.qgekiModal_main .standalone_placeholder {
  background: #e7e7e7;
}

#qsearch .wysiwyg p {
  margin: 0;
  padding: 0;
}
#qsearch .layoutPage {
  margin: 0;
  padding: 0;
}
#qsearch .layoutPage .bodyMain {
  margin: 0;
  padding: 0;
}
#qsearch .layoutPage .bodyMain .page_block {
  margin: 0;
  padding: 0;
}
#qsearch .layoutPage .bodyMain .page_block .subtitle {
  display: none;
}
#qsearch .layoutPage .bodyMain .page_block .spec {
  margin: 0;
}

.gsc-search-box * {
  -webkit-box-sizing: initial;
  box-sizing: initial;
}

.gsc-control-cse {
  padding: 0 !important;
}

@media screen and (min-width: 768px) {
  .qgekiModal_main {
    width: calc(100vw - 10rem);
  }
  .qgekiModal_event {
    width: calc(100vw - 15rem);
  }
  .qgekiModal_inner {
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px #ccc;
    box-shadow: 0px 0px 8px #ccc;
  }
  .qgekiModal_main.scrollable {
    bottom: 100px;
  }
  .qgekiModal_main.scrollable .qgekiModal_inner {
    height: 100%;
    overflow: auto;
    position: relative;
  }
  .qgekiModal_main.scrollable .qgekiModal_inner .qgekiModal_close {
    right: 21px;
    right: 1.3125rem;
  }
  #qsearch .layoutPage .bodyMain .spec_title {
    float: none;
    border-bottom: 1px solid #999;
    border-top: 0;
    width: 100%;
  }
  #qsearch .layoutPage .bodyMain .spec_content {
    float: none;
    border-top: 0;
    padding: 16px 0px 0px 0px;
    padding: 1rem 0rem 0rem 0rem;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .qgekiModal_main {
    width: 900px;
    width: 56.25rem;
  }
  .qgekiModal_inner {
    margin-left: 80px;
    margin-left: 5rem;
  }
}
.qgekiModal_contents {
  padding: 44px 32px 44px 32px;
  padding: 2.75rem 2rem 2.75rem 2rem;
}

.qgekiModal_event .qgekiModal_contents {
  padding: 0;
}
.qgekiModal_event .eventsPost .bodyMain_header h1 {
  padding: 12px 56px 0px 0px;
  padding: 0.75rem 3.5rem 0rem 0rem;
}
.qgekiModal_event .eventsPost .bodyMain_header h1 .sub {
  height: auto !important;
  min-height: 16px;
  height: 16px;
  min-height: 1rem;
}

.eventsPost .bodyMain {
  background: #fff;
}
.eventsPost .bodyMain_post {
  width: 100%;
}
.eventsPost .bodyMain_post:after {
  zoom: 1;
}
.eventsPost .bodyMain_post:after:before, .eventsPost .bodyMain_post:after:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.eventsPost .bodyMain_post:after:after {
  clear: both;
}
.eventsPost .bodyMain_header header {
  padding: 0px 32px 0px 32px;
  padding: 0rem 2rem 0rem 2rem;
}
.eventsPost .bodyMain_header .crown {
  float: left;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.eventsPost .bodyMain_header .crown span {
  background: #000000;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 1px 8px 0px 0px;
  margin: 0.0625rem 0.5rem 0rem 0rem;
  padding: 0px 4px 0px 4px;
  padding: 0rem 0.25rem 0rem 0.25rem;
}
.eventsPost .bodyMain_header h1 {
  clear: both;
  font-size: 48px;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.25;
  padding: 0px 0px 12px 0px;
  padding: 0rem 0rem 0.75rem 0rem;
}
.ua-desktop-windows .eventsPost .bodyMain_header h1 {
  font-weight: 500;
}
.eventsPost .bodyMain_header h1 .title,
.eventsPost .bodyMain_header h1 .sub,
.eventsPost .bodyMain_header h1 .sponsor {
  display: block;
  margin: 0;
  padding: 0;
}
.eventsPost .bodyMain_header h1 .title + .title,
.eventsPost .bodyMain_header h1 .sub,
.eventsPost .bodyMain_header h1 .sponsor {
  font-size: 20px;
  font-size: 1.25rem;
}
.eventsPost .bodyMain_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eventsPost .bodyMain_content {
  float: left;
  width: calc(100% - 20rem);
}
.eventsPost .bodyMain_content .entry {
  background: #fff;
  padding: 48px 48px 48px 48px;
  padding: 3rem 3rem 3rem 3rem;
}
.eventsPost .bodyMain_content .entry .entryPart_custom .wysiwyg img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.eventsPost .bodyMain_sidebar {
  background: #eee;
  float: right;
  width: 320px;
  width: 20rem;
}
.eventsPost .bodyMain_sidebar .side {
  background: #eee;
  padding: 0px 16px 0px 16px;
  padding: 0rem 1rem 0rem 1rem;
}
.eventsPost .subtitle {
  margin: 0px -48px 16px -48px;
  margin: 0rem -3rem 1rem -3rem;
  width: auto;
}
.eventsPost .sns {
  zoom: 1;
  margin: 0;
  padding: 8px 0px 8px 0px;
  padding: 0.5rem 0rem 0.5rem 0rem;
  width: 100%;
}
.eventsPost .sns:before, .eventsPost .sns:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.eventsPost .sns:after {
  clear: both;
}
.eventsPost .sns_child {
  display: inline-block;
  margin: 0px 8px 0px 3.2px;
  margin: 0rem 0.5rem 0rem 0.2rem;
  vertical-align: top;
}
.eventsPost .sns_child:last-child {
  padding: 0;
}
.eventsPost .entryPart_gallery {
  overflow: hidden;
  width: 100%;
  padding-bottom: 1rem;
}
.eventsPost .entryPart_image {
  overflow: visible !important;
  width: 100%;
}
.eventsPost .entryPart_image .caption {
  bottom: 8px;
  bottom: 0.5rem;
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  line-height: 1.3;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  -webkit-text-shadow: 0px 0px 2px rgba(30, 30, 30, 0.85);
  -moz-text-shadow: 0px 0px 2px rgba(30, 30, 30, 0.85);
  text-shadow: 0px 0px 2px rgba(30, 30, 30, 0.85);
  margin-left: 8px;
  margin-left: 0.5rem;
  bottom: -0.85rem;
  right: 0.5rem;
  color: #000;
  text-shadow: none;
}
.eventsPost .entryPart_image .caption:before {
  content: "© ";
}
.eventsPost .entryPart_movie {
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 56.25% 0 0 0;
  position: relative;
  width: 100%;
}
.eventsPost .entryPart_movie #player {
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.eventsPost .entryPart_image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 56.25% 0 0 0;
  overflow: hidden;
  position: relative;
  display: none;
  background-size: auto 100%;
  background-size: contain;
}
.eventsPost .entryPart_image img {
  height: 100%;
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
}
.eventsPost .entryPart_image:first-child {
  display: block;
}
.eventsPost .entryPart_image.portraitImage {
  background-size: contain;
}
.eventsPost .entryPart_notification {
  background: #e84a4a;
  background: rgba(232, 74, 74, 0.12);
  border-bottom: 2px dotted #999;
  margin: 0;
  padding: 0;
}
.eventsPost .entryPart_notification .wysiwyg {
  padding: 32px 48px 32px 48px;
  padding: 2rem 3rem 2rem 3rem;
}
.eventsPost .entryPart_notification .wysiwyg h2 {
  color: #e84a4a;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  padding: 0px 0px 8px 0px;
  padding: 0rem 0rem 0.5rem 0rem;
}
.eventsPost .entryPart_notification .wysiwyg p {
  margin: 0;
  padding: 0;
}
.eventsPost .entryPart_video {
  margin: 32px 0px 32px 0px;
  margin: 2rem 0rem 2rem 0rem;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.eventsPost .entryPart_video:first-child {
  margin: 0px 0px 32px 0px;
  margin: 0rem 0rem 2rem 0rem;
}
.eventsPost .entryPart_video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.eventsPost .entryPart_catchintro .entryPart_title {
  color: #e84a4a;
  font-size: 24px;
  font-size: 1.5rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0px 0px 16px 0px;
  margin: 0rem 0rem 1rem 0rem;
  padding: 0;
}
.eventsPost .sideWidget {
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  background: url(/_assets/image/global/ui/border/side_stripe_bw.png) repeat-x 0 0;
  padding: 0px 0px 24px 0px;
  padding: 0rem 0rem 1.5rem 0rem;
}
.eventsPost .sideWidget_title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.5;
  margin: 0px 0px 4px 0px;
  margin: 0rem 0rem 0.25rem 0rem;
  padding: 8px 0px 4px 0px;
  padding: 0.5rem 0rem 0.25rem 0rem;
}
.eventsPost .sideWidget_place {
  margin: 0px 0px 24px 0px;
  margin: 0rem 0rem 1.5rem 0rem;
}
.eventsPost .sideWidget_place:last-child {
  margin: 0;
}
.eventsPost .sideWidget_place .note:before {
  content: " ";
}
.eventsPost .sideWidget_content a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.eventsPost .sideWidget_content a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.eventsPost .sideWidget_content h4 {
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  font-weight: 700;
  display: block;
  line-height: 1.5;
}
.eventsPost .sideWidget_content dl + h4 {
  padding: 8px 0px 0px 0px;
  padding: 0.5rem 0rem 0rem 0rem;
}
.eventsPost .sideWidget_content strong {
  font-weight: bold;
  font-weight: 700;
}
.eventsPost .sideWidget_content dl, .eventsPost .sideWidget_content dt, .eventsPost .sideWidget_content dd {
  color: #000000;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.ua-desktop-windows .eventsPost .sideWidget_content dl, .ua-desktop-windows .eventsPost .sideWidget_content dt, .ua-desktop-windows .eventsPost .sideWidget_content dd {
  font-weight: 500;
}
.eventsPost .sideWidget_content dt {
  float: left;
  min-width: 76px;
  min-width: 4.75rem;
}
.eventsPost .sideWidget_content p {
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.7;
}
.ua-desktop-windows .eventsPost .sideWidget_content p {
  font-weight: 500;
}
.eventsPost .sideWidget_content p:last-child {
  margin: 0px 0px 8px 0px;
  margin: 0rem 0rem 0.5rem 0rem;
}
.eventsPost .sideWidget_content p + h4 {
  padding-top: 8px;
  padding-top: 0.5rem;
}
.eventsPost .sideWidget_tickets {
  padding: 0px 0px 12px 0px;
  padding: 0rem 0rem 0.75rem 0rem;
}
.eventsPost .sideWidget_tickets dl, .eventsPost .sideWidget_tickets dt, .eventsPost .sideWidget_tickets dd {
  height: auto !important;
  min-height: 8px;
  height: 8px;
  min-height: 0.5rem;
}
.eventsPost .sideWidget_tickets dt {
  float: none;
}
.eventsPost .sideWidget_tickets dl + dl {
  padding: 8px 0px 0px 0px;
  padding: 0.5rem 0rem 0rem 0rem;
}
.eventsPost .sideWidget_tickets dd {
  padding: 0px 0px 4px 12px;
  padding: 0rem 0rem 0.25rem 0.75rem;
}
.eventsPost .sideWidget_tickets dd:last-child {
  padding: 0px 0px 0px 12px;
  padding: 0rem 0rem 0rem 0.75rem;
}
.eventsPost .sideWidget_tickets dd .buy {
  background: #2C82FF;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.75;
  margin: 0px 0px 8px 0px;
  margin: 0rem 0rem 0.5rem 0rem;
  max-width: 224px;
  max-width: 14rem;
  padding: 2.4px 0px 2.4px 0px;
  padding: 0.15rem 0rem 0.15rem 0rem;
  border-radius: 12px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.eventsPost .sideWidget_selldates_footer {
  margin: 12px 0px -8px 0px;
  margin: 0.75rem 0rem -0.5rem 0rem;
}
.eventsPost .sidePDFWidget {
  margin: 0px 0px 32px 0px;
  margin: 0rem 0rem 2rem 0rem;
}
.eventsPost .sideWidget + .sidePDFWidget {
  margin: -32px 0px 32px 0px;
  margin: -2rem 0rem 2rem 0rem;
}
.eventsPost .sidePDFWidget + .sidePDFWidget {
  margin: -32px 0px 32px 0px;
  margin: -2rem 0rem 2rem 0rem;
}
.eventsPost .sidePDFWidget a {
  background: url(/_assets/image/global/ui/icon_pdf.png) no-repeat center left;
  background: url(/_assets/image/global/ui/icon_pdf.svg) no-repeat center left/auto 1rem;
  color: #2C82FF;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  padding: 0px 0px 0px 16px;
  padding: 0rem 0rem 0rem 1rem;
}
.eventsPost .placeHeader_title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.3;
  margin: 0px 0px 8px 0px;
  margin: 0rem 0rem 0.5rem 0rem;
}
.eventsPost .placeHeader_title .topcrown,
.eventsPost .placeHeader_title .range {
  display: block;
}
.eventsPost .placeContent ul, .eventsPost .placeContent li {
  display: block;
  margin: 0;
  padding: 0;
}
.eventsPost .placeContent ul {
  background: url(/_assets/image/global/ui/border/side_dotted_grey.png) repeat-x -2px 100%;
  margin: 0px 0px 5px 0px;
  margin: 0rem 0rem 0.3125rem 0rem;
}
.eventsPost .placeContent li {
  background: url(/_assets/image/global/ui/border/side_dotted_grey.png) repeat-x -2px 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 6px 0px 5px 0px;
  padding: 0.375rem 0rem 0.3125rem 0rem;
}
.eventsPost .placeContent .day_month, .eventsPost .placeContent .day_date, .eventsPost .placeContent .day_weekday {
  display: inline-block;
  min-width: 28.8px;
  min-width: 1.8rem;
  text-align: right;
}
.eventsPost .placeHeader + .placeFooter {
  margin: -8px 0px 0px 0px;
  margin: -0.5rem 0rem 0rem 0rem;
}
.eventsPost .placeFooter {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
}
.eventsPost .bodyMain_tickets {
  padding: 0px 0px 24px 0px;
  padding: 0rem 0rem 1.5rem 0rem;
}
.eventsPost .flex-control-nav {
  position: static;
}
.eventsPost .flex-control-thumbs,
.eventsPost .flex-control-thumbs li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
.eventsPost .flex-control-thumbs {
  background: #e84a4a;
  padding: 16px 0px 16px 0px;
  padding: 1rem 0rem 1rem 0rem;
  text-align: center;
  width: calc(100% - 20rem);
}
.eventsPost .flex-control-thumbs li {
  background: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0px 1.6px 0px 1.6px;
  margin: 0rem 0.1rem 0rem 0.1rem;
  padding: 0;
}
.eventsPost .flex-control-thumbs li img {
  display: block;
  height: 40px;
  height: 2.5rem;
  opacity: 0.6;
  -o-transition-delay: 0.1s;
  -o-transition-duration: 0.1s;
  -o-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0.1s;
  -moz-transition-duration: 0.1s;
  -moz-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0.1s;
  -ms-transition-duration: 0.1s;
  -ms-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0.1s;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0.1s;
  transition-duration: 0.1s;
  transition-property: opacity;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  width: auto;
}
.eventsPost .flex-control-thumbs li img.flex-active {
  opacity: 0.9;
}

@media screen and (min-width: 1440px) {
  .eventsPost .entryPart_image {
    padding-top: 600px;
  }
}
.withFlexSlider .bodyMain_sidebar .side {
  margin: -75.2px 0px 0px 0px;
  margin: -4.7rem 0rem 0rem 0rem;
}

.ja .eventsPost .sideWidget_place .label + .location:before {
  content: "＝";
  display: inline;
}
.ja .eventsPost .sideWidget_place .note:before,
.ja .eventsPost .sideWidget_place .start:before {
  content: "  ";
}

.layoutPage .bodyMain {
  padding: 32px 0px 128px 0px;
  padding: 2rem 0rem 8rem 0rem;
  background: #fff;
}
.layoutPage .bodyMain header + .page_block > .pad:first-child {
  margin: 0px 32px 0px 32px;
  margin: 0rem 2rem 0rem 2rem;
}
.layoutPage .bodyMain a {
  color: #2c82ff;
}
.layoutPage .bodyMain img {
  width: 100%;
  height: auto;
  border: none;
}
.layoutPage .bodyMain .clearfix {
  zoom: 1;
}
.layoutPage .bodyMain .clearfix:before, .layoutPage .bodyMain .clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.layoutPage .bodyMain .clearfix:after {
  clear: both;
}
.layoutPage .bodyMain .page_block {
  margin: 0px 0px 64px 0px;
  margin: 0rem 0rem 4rem 0rem;
  background: #fff;
}
.layoutPage .bodyMain .gray_bg {
  padding: 0px 0px 64px 0px;
  padding: 0rem 0rem 4rem 0rem;
  background: #e7e7e7;
}
.layoutPage .bodyMain .gray_bg .page_block {
  margin: 0px 0px 0px 0px;
  margin: 0rem 0rem 0rem 0rem;
  padding: 0px 0px 64px 0px;
  padding: 0rem 0rem 4rem 0rem;
}
.layoutPage .bodyMain .spec {
  zoom: 1;
  margin: 32px 32px 32px 32px;
  margin: 2rem 2rem 2rem 2rem;
}
.layoutPage .bodyMain .spec:before, .layoutPage .bodyMain .spec:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}
.layoutPage .bodyMain .spec:after {
  clear: both;
}
.layoutPage .bodyMain .spec_title {
  float: left;
  width: 256px;
  width: 16rem;
  padding: 24px 0px 0px 0px;
  padding: 1.5rem 0rem 0rem 0rem;
  border-top: 1px solid #999;
  line-height: 1.5;
}
.layoutPage .bodyMain .spec .title_text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.5;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
}
.ua-desktop-windows .layoutPage .bodyMain .spec .title_text {
  font-weight: 500;
}
.layoutPage .bodyMain .spec_content {
  float: right;
  width: calc(100% - 18.75rem);
  padding: 24px 0px 0px 0px;
  padding: 1.5rem 0rem 0rem 0rem;
  border-top: 1px solid #999;
  line-height: 1.75;
}
.layoutPage .bodyMain .spec .no_border {
  padding: 0px 0px 0px 0px;
  padding: 0rem 0rem 0rem 0rem;
  border-top: none;
}
.layoutPage .bodyMain .spec:nth-child(2) {
  margin: 32px 32px 48px 32px;
  margin: 2rem 2rem 3rem 2rem;
}
.layoutPage .bodyMain .pages {
  float: left;
  width: 33.33%;
  padding: 0px 16px 0px 0px;
  padding: 0rem 1rem 0rem 0rem;
  padding-left: 1em;
  font-size: 14px;
  font-size: 0.875rem;
}
.layoutPage .bodyMain .pages:before {
  content: "・ ";
  margin-left: -1em;
}
.layoutPage .bodyMain .pages a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutPage .bodyMain .pages a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.layoutPage .bodyMain .numbering {
  counter-reset: number;
  padding: 0 0 1px 0;
}
.layoutPage .bodyMain .numbering .no:before {
  counter-increment: number;
  content: counter(number) ". ";
  float: left;
  padding: 2.4px 0px 0px 32px;
  padding: 0.15rem 0rem 0rem 2rem;
}
.layoutPage .bodyMain .numbering .no {
  text-indent: 0;
}
.layoutPage .bodyMain .numbering .no span {
  float: left;
  text-indent: 0;
}
.layoutPage .bodyMain .link {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  font-weight: 700;
}
.layoutPage .bodyMain_header p {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  padding: 0px 32px 8px 32px;
  padding: 0rem 2rem 0.5rem 2rem;
  line-height: 1.75;
}

.layoutInquiry .bodyMain_header p {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  padding: 0px 32px 8px 32px;
  padding: 0rem 2rem 0.5rem 2rem;
  line-height: 1.75;
}
.layoutInquiry .bodyMain_header a {
  border-bottom: 1px solid rgba(44, 130, 255, 0);
  color: #2C82FF;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: border-bottom;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutInquiry .bodyMain_header a:hover {
  border-bottom: 1px solid rgb(44, 130, 255);
}
.layoutInquiry .entryPart_content {
  padding: 16px 32px 16px 32px;
  padding: 1rem 2rem 1rem 2rem;
}
.layoutInquiry form {
  display: block;
  margin: 0;
  padding: 0;
}
.layoutInquiry .field {
  padding: 0px 0px 16px 0px;
  padding: 0rem 0rem 1rem 0rem;
  position: relative;
  width: 100%;
}
.layoutInquiry .field_label {
  border-top: 1px solid #999;
  left: 0;
  padding: 4px 0px 0px 0px;
  padding: 0.25rem 0rem 0rem 0rem;
  position: absolute;
  top: 0;
  width: 256px;
  width: 16rem;
}
.layoutInquiry .field_label label,
.layoutInquiry .field_label .preview_label {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
}
.layoutInquiry .field_label label .required,
.layoutInquiry .field_label .preview_label .required {
  color: #e84a4a;
  font-size: 16px;
  font-size: 1rem;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  font-style: normal;
  position: relative;
  top: 4px;
  top: 0.25rem;
  vertical-align: super;
}
.layoutInquiry .field_input {
  border-top: 1px solid #999;
  background: #e5e5e5;
  color: #000000;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: normal;
  margin: 0px 0px 0px 312px;
  margin: 0rem 0rem 0rem 19.5rem;
  padding: 12px 16px 12px 16px;
  padding: 0.75rem 1rem 0.75rem 1rem;
  -o-border-bottom-left-radius: 8px;
  -o-border-bottom-right-radius: 8px;
  -moz-border-bottom-left-radius: 8px;
  -moz-border-bottom-right-radius: 8px;
  -ms-border-bottom-left-radius: 8px;
  -ms-border-bottom-right-adius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.layoutInquiry .field_input input, .layoutInquiry .field_input select, .layoutInquiry .field_input textarea, .layoutInquiry .field_input .preview_input {
  background: transparent;
  border: 0;
  color: #000000;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: normal;
  margin: 0;
  padding: 0;
  width: 100%;
  /* @include placeholderColor($viBlack); */
}
.layoutInquiry .field_input select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: url(/_assets/image/global/ui/formfields/select_mark.png) no-repeat 100% 50%;
  background: url(/_assets/image/global/ui/formfields/select_mark.svg) no-repeat 100% 50%/9px 18px;
}
.layoutInquiry .preview .field_input {
  background: transparent;
}
.layoutInquiry .contactdesks {
  border-collapse: collapse;
}
.layoutInquiry .contactdesks th, .layoutInquiry .contactdesks td {
  border: 0;
  background: transparent;
  border-top: 1px dotted #d7d7d7;
  padding: 16px 0px 16px 0px;
  padding: 1rem 0rem 1rem 0rem;
  vertical-align: top;
}
.layoutInquiry .contactdesks th {
  border-right: 2rem solid #fff;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  width: auto;
}
.ua-desktop-windows .layoutInquiry .contactdesks th {
  font-weight: 500;
}
.layoutInquiry .contactdesks td {
  font-size: 16px;
  font-size: 1rem;
  text-align: right;
  width: 304px;
  width: 19rem;
}
.layoutInquiry .contactdesks td strong, .layoutInquiry .contactdesks td b, .layoutInquiry .contactdesks td span {
  font-weight: normal;
  text-align: left;
}
.ua-desktop-windows .layoutInquiry .contactdesks td strong, .ua-desktop-windows .layoutInquiry .contactdesks td b, .ua-desktop-windows .layoutInquiry .contactdesks td span {
  font-weight: 500;
}
.layoutInquiry .contactdesks td strong, .layoutInquiry .contactdesks td b {
  display: block;
  float: left;
  height: auto !important;
  min-height: 32px;
  height: 32px;
  min-height: 2rem;
  width: 140px;
  width: 8.75rem;
}
.layoutInquiry .contactdesks td .caps {
  display: inline-block;
  min-width: 32px;
  min-width: 2rem;
  text-align: left;
}
.layoutInquiry .contactdesks tr:first-child th, .layoutInquiry .contactdesks tr:first-child td {
  border-top: 1px solid #999;
}
.layoutInquiry .contactdesks tr:last-child th, .layoutInquiry .contactdesks tr:last-child td {
  border-bottom: 1px dotted #d7d7d7;
}
.layoutInquiry #mail_preview,
.layoutInquiry #mail_post,
.layoutInquiry #mail_edit {
  background: #2C82FF;
  border: 1px solid #2C82FF;
  cursor: pointer;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  float: left;
  font-weight: bold;
  font-weight: 700;
  line-height: 2.5;
  margin: 16px 32px 64px 312px;
  margin: 1rem 2rem 4rem 19.5rem;
  padding: 0px 32px 0px 32px;
  padding: 0rem 2rem 0rem 2rem;
  -o-transition-delay: 0s;
  -o-transition-duration: 100ms;
  -o-transition-property: all;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 100ms;
  -moz-transition-property: all;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -ms-transition-delay: 0s;
  -ms-transition-duration: 100ms;
  -ms-transition-property: all;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 100ms;
  -webkit-transition-property: all;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
  transition-delay: 0s;
  transition-duration: 100ms;
  transition-property: all;
  /* timing-function: cubic-bezier(0.55, 0.01, 0.11, 0.99); */
}
.layoutInquiry #mail_preview:hover, .layoutInquiry #mail_preview:active,
.layoutInquiry #mail_post:hover,
.layoutInquiry #mail_post:active,
.layoutInquiry #mail_edit:hover,
.layoutInquiry #mail_edit:active {
  background: #fff;
  color: #2C82FF;
}
.layoutInquiry #mail_post {
  margin: 16px 0px 0px 0px;
  margin: 1rem 0rem 0rem 0rem;
}
.layoutInquiry .post .preview {
  left: 0;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  top: 0;
}
.layoutInquiry .post #mail_edit,
.layoutInquiry .post #mail_post {
  display: block;
}
.layoutInquiry .post .form {
  left: -99999px;
  left: -99999rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -99999px;
  top: -99999rem;
  max-width: 900px;
}
.layoutInquiry .post #mail_preview {
  display: none;
}
.layoutInquiry .edit .preview {
  left: -99999px;
  left: -99999rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -99999px;
  top: -99999rem;
  max-width: 900px;
}
.layoutInquiry .edit #mail_edit,
.layoutInquiry .edit #mail_post {
  display: none;
}
.layoutInquiry .edit .form {
  left: 0;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  top: 0;
}
.layoutInquiry .edit #mail_preview {
  display: block;
}
.layoutInquiry .wysiwyg p {
  color: #000000;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 2;
  margin: 0;
  padding: 0px 0px 24px 0px;
  padding: 0rem 0rem 1.5rem 0rem;
}
.ua-desktop-windows .layoutInquiry .wysiwyg p {
  font-weight: 500;
}

.layoutPrivacy article {
  border-bottom: 96px solid #e7e7e7;
  border-bottom: 6rem solid #e7e7e7;
}
.layoutPrivacy article + article {
  border-bottom: 0;
  padding: 32px 0px 0px 0px;
  padding: 2rem 0rem 0rem 0rem;
}

.layout404 {
  text-align: center;
}
.layout404 .bodyMain {
  padding: 0px 0px 64px 0px;
  padding: 0rem 0rem 4rem 0rem;
}
.layout404 .bodyMain_header {
  background: url(/_assets/image/404/bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.layout404 .bodyMain_header header,
.layout404 .bodyMain_header .pad {
  margin: 0;
  padding: 0;
}
.layout404 .bodyMain_header header p,
.layout404 .bodyMain_header .pad p {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  font-variant-east-asian: proportional-width;
  font-variant-numeric: proportional-nums;
  font-variant: normal;
  -webkit-font-feature-settings: "palt", "lnum";
  font-feature-settings: "palt", "lnum";
  line-height: 2;
  margin: 0;
  padding: 8px 0px 32px 0px;
  padding: 0.5rem 0rem 2rem 0rem;
  text-align: left;
  vertical-align: top;
}
.ua-desktop-windows .layout404 .bodyMain_header header p,
.ua-desktop-windows .layout404 .bodyMain_header .pad p {
  font-weight: 500;
}
.layout404 .bodyMain_header header {
  background: rgba(0, 0, 0, 0.75);
}
.layout404 .title {
  color: #fff;
  display: inline-block;
  font-size: 44px;
  font-size: 2.75rem;
  padding: 24px 0px 8px 0px;
  padding: 1.5rem 0rem 0.5rem 0rem;
  vertical-align: top;
}
.layout404 .title .foreword {
  color: #fff;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 12px 0px 12px 0px;
  padding: 0.75rem 0rem 0.75rem 0rem;
}
.layout404 .title:after {
  background: url(/_assets/image/global/ui/border/aboutus_stripe_white.svg) repeat-x top left;
  background-size: auto 0.5rem;
  content: " ";
  display: block;
  height: 8px;
  height: 0.5rem;
  margin: 8px -4px 0px -4px;
  margin: 0.5rem -0.25rem 0rem -0.25rem;
  padding: 0;
}
.layout404 .back2top {
  margin: 0;
  margin: 32px 0px 0px 0px;
  margin: 2rem 0rem 0rem 0rem;
  text-align: center;
}
.layout404 .back2top a {
  background: url(/_assets/image/global/ui/arrow/icon_arrow_more_usage.svg) no-repeat 100% 50%;
  color: #2C82FF;
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  margin: 0;
  padding: 0px 32px 0px 0px;
  padding: 0rem 2rem 0rem 0rem;
  vertical-align: top;
}
.layout404 .page_block {
  text-align: left;
}
.layout404 .page_block .subtitle {
  display: none;
}

#google_translate_element {
  position: fixed;
  left: 0;
  top: 0;
  margin: 0px 0px 0px 28px;
  margin: 0rem 0rem 0rem 1.75rem;
  z-index: 998;
}

.translated-ltr nav a,
.translated-ltr .navSub a,
.translated-ltr h1, .translated-ltr h2, .translated-ltr h3, .translated-ltr h4, .translated-ltr h5, .translated-ltr h6,
.translated-rtl nav a,
.translated-rtl .navSub a,
.translated-rtl h1,
.translated-rtl h2,
.translated-rtl h3,
.translated-rtl h4,
.translated-rtl h5,
.translated-rtl h6 {
  text-transform: capitalize;
}
.translated-ltr #calendarNav ul li,
.translated-rtl #calendarNav ul li {
  width: 128px;
  width: 8rem;
}
.translated-ltr .aboutusIndex .bodyMain .visual .catch_text p,
.translated-rtl .aboutusIndex .bodyMain .visual .catch_text p {
  line-height: 1.5;
}
.translated-ltr .navSub,
.translated-rtl .navSub {
  top: 39px;
}
.translated-ltr .headerGlobal_inner,
.translated-rtl .headerGlobal_inner {
  top: 4rem;
}
.translated-ltr .localNav,
.translated-rtl .localNav {
  top: 7.9rem;
}

.translate-ltr .aboutusIndex .bodyMain .concept_title .concept_line {
  display: inline;
}

@media screen and (min-width: 1200px) {
  #google_translate_element {
    margin: 4px 0px 0px 16px;
    margin: 0.25rem 0rem 0rem 1rem;
    padding: 0;
    position: relative;
  }
  .translated-ltr .localNav,
  .translated-rtl .localNav {
    top: 39px;
  }
}
@media print {
  .headerGlobal_inner,
  .localNav {
    position: relative;
    top: 0;
  }
  .wrapContents_body {
    padding-top: 0;
  }
  .bodyContents {
    padding-top: 40px;
  }
  #shortcuts,
  .navGlobal_unit.groupSearch,
  .navSub {
    display: none;
  }
}