@charset "UTF-8";

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
    -webkit-transform: translate3d(0, 0, 0);
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#cboxWrapper {
    max-width: none;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
    clear: left;
}

#cboxContent {
    position: relative;
}

#cboxLoadedContent {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

#cboxTitle {
    margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    -ms-interpolation-mode: bicubic;
    display: block;
    max-width: none;
    margin: auto;
    float: left;
    border: 0;
}

.cboxIframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
    background: url(images/overlay.png) repeat 0 0;
    filter: alpha(opacity=90);
    opacity: 0.9;
}

#colorbox {
    outline: 0;
}

#cboxTopLeft {
    width: 21px;
    height: 21px;
    background: url(images/controls.png) no-repeat -101px 0;
}

#cboxTopRight {
    width: 21px;
    height: 21px;
    background: url(images/controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
    width: 21px;
    height: 21px;
    background: url(images/controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
    width: 21px;
    height: 21px;
    background: url(images/controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
    width: 21px;
    background: url(images/controls.png) left top repeat-y;
}

#cboxMiddleRight {
    width: 21px;
    background: url(images/controls.png) right top repeat-y;
}

#cboxTopCenter {
    height: 21px;
    background: url(images/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
    height: 21px;
    background: url(images/border.png) 0 -29px repeat-x;
}

#cboxContent {
    overflow: hidden;
    /*background: #fff;*/
}

.cboxIframe {
    background: #fff;
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc;
}

#cboxLoadedContent {
    margin-bottom: 28px;
}

#cboxTitle {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    color: #949494;
    text-align: center;
}

#cboxCurrent {
    position: absolute;
    bottom: 4px;
    left: 58px;
    color: #949494;
}

#cboxLoadingOverlay {
    background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
    background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
    width: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
    outline: 0;
}

#cboxSlideshow {
    position: absolute;
    right: 30px;
    bottom: 4px;
    color: #0092ef;
}

#cboxPrevious {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: url(images/controls.png) no-repeat -75px 0;
    text-indent: -9999px;
}

#cboxPrevious:hover {
    background-position: -75px -25px;
}

#cboxNext {
    position: absolute;
    bottom: 0;
    left: 27px;
    width: 25px;
    height: 25px;
    background: url(images/controls.png) no-repeat -50px 0;
    text-indent: -9999px;
}

#cboxNext:hover {
    background-position: -50px -25px;
}

#cboxClose {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    background: url(images/controls.png) no-repeat -25px 0;
    text-indent: -9999px;
}

#cboxClose:hover {
    background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
}

/*
 * Container style
 */
.ps {
    overflow-anchor: none;
    -ms-overflow-style: none;
    -ms-touch-action: auto;
    overflow: hidden !important;
    touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
    -o-transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    display: none;
    /* please don't change 'position' */
    position: absolute;
    /* there must be 'bottom' or 'top' for ps__rail-x */
    bottom: 0px;
    height: 15px;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
}

.ps__rail-y {
    -o-transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    display: none;
    /* please don't change 'position' */
    position: absolute;
    /* there must be 'right' or 'left' for ps__rail-y */
    right: 0;
    width: 15px;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
    display: block;
    background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #eee;
    opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
    -o-transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    /* please don't change 'position' */
    position: absolute;
    /* there must be 'bottom' for ps__thumb-x */
    bottom: 2px;
    height: 6px;
    border-radius: 6px;
    background-color: #aaa;
    transition: background-color .2s linear, height .2s ease-in-out;
}

.ps__thumb-y {
    -o-transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    /* please don't change 'position' */
    position: absolute;
    /* there must be 'right' for ps__thumb-y */
    right: 2px;
    width: 6px;
    border-radius: 6px;
    background-color: #aaa;
    transition: background-color .2s linear, width .2s ease-in-out;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    height: 11px;
    background-color: #999;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    width: 11px;
    background-color: #999;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@-webkit-keyframes scroll-hint-appear {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50%,
    100% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
        opacity: 0;
    }
}

@keyframes scroll-hint-appear {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50%,
    100% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
        opacity: 0;
    }
}

.scroll-hint.is-right-scrollable {
    background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -o-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
    -webkit-box-sizing: border-box;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    box-sizing: border-box;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 60px);
    width: 120px;
    height: 80px;
    padding: 20px 10px 10px 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    opacity: 0;
    transition: opacity .3s;
}

.scroll-hint-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
}

.scroll-hint-text {
    margin-top: 5px;
    color: #FFF;
    font-size: 10px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: .8;
}

.scroll-hint-icon:before {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #FFF;
    text-align: center;
    vertical-align: middle;
    content: "";
}

.scroll-hint-icon:after {
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 34px;
    height: 14px;
    margin-left: -20px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    content: "";
    opacity: 0;
    transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
    opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
    -webkit-animation: scroll-hint-appear 1.2s linear;
    -webkit-animation-iteration-count: 2;
    animation: scroll-hint-appear 1.2s linear;
    animation-iteration-count: 2;
}

.scroll-hint-icon-white {
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
    background-color: #FFF;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
    color: #000;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveRight {
    0% {
        right: 1em;
    }

    30% {
        right: 0.5em;
        opacity: 0;
    }

    40% {
        right: 1.25em;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        right: 1em;
    }

    100% {
        right: 1em;
    }
}

@keyframes moveRight {
    0% {
        right: 1em;
    }

    30% {
        right: 0.5em;
        opacity: 0;
    }

    40% {
        right: 1.25em;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60% {
        right: 1em;
    }

    100% {
        right: 1em;
    }
}

@-webkit-keyframes sparkls {
    50% {
        opacity: 0;
    }
}

@keyframes sparkls {
    50% {
        opacity: 0;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    /* 1 */
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
    /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

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

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    /* 2 */
    -webkit-text-decoration: underline dotted;
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    text-decoration: underline dotted;
    /* 2 */
}

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

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

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

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    /* 1 */
    margin: 0;
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 2 */
}

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

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

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

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

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

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

html {
    overflow-x: hidden;
    color: #fff;
    /*font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;*/
    font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 75%;
    line-height: 1.875;
    font-weight: 900;
}

body {
    overflow-x: hidden;
    font-size: 1rem;
}

img,
svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

html {
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    box-sizing: border-box;
    background: #fff;
}

body,
header,
main,
footer {
    z-index: 1;
    position: relative;
}

section {
    outline: none;
}

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

iframe {
    border: none;
}

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

ul,
ol,
li,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    padding: 0;
    border-width: 0;
    background-color: transparent;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}

input::-moz-focus-inner {
    margin: 0;
    padding: 0;
    border: 0;
}

.ps--active-y:hover .ps__rail-y {
    opacity: 1 !important;
}

.ps__rail-y {
    width: auto !important;
    opacity: 1 !important;
}

.ps__thumb-y {
    width: 6px !important;
    border-radius: 0 !important;
    background-color: #333;
}

.ps__thumb-y:hover {
    background-color: #333;
}

#cboxOverlay {
    background: #fff;
}

#cboxContent {
    margin-top: 80px;
    overflow: visible;
}

#cboxLoadedContent {
    margin-bottom: 0 !important;
}

#cboxClose,
#cboxClose:hover {
    background: none;
    cursor: pointer;
}

#cboxClose {
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    top: -80px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 60px;
    height: 60px;
    margin: auto;
    transition: 0.15s;
}

#cboxClose::before,
#cboxClose::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 100%;
    background-color: #333;
    content: '';
}

#cboxClose::before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

#cboxClose::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

#cboxClose:hover {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
}

#cboxPrevious,
#cboxNext {
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    border-top: 6px solid #333;
    border-right: 6px solid #333;
    text-indent: -9999px;
    transition: 0.15s;
}

#cboxPrevious:hover,
#cboxNext:hover {
    border-top: 6px solid #444;
    border-right: 6px solid #444;
}

#cboxPrevious {
    -webkit-transform: translateY(-50%) rotate(225deg);
    -ms-transform: translateY(-50%) rotate(225deg);
    left: -8%;
    transform: translateY(-50%) rotate(225deg);
}

#cboxNext {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    right: -8%;
    transform: translateY(-50%) rotate(45deg);
}

.cbox-full-image img {
    width: auto !important;
    height: 100% !important;
    margin: 0 !important;
}

.body {
    /*-webkit-animation: fadeIn 1s ease-in-out;*/
    background: url(../img/bg/contents_bg@pc.jpg) 50% 0/100% auto repeat-y;
    /*background-attachment: fixed;*/
    line-break: strict;
    /*animation: fadeIn 1s ease-in-out;*/
}

.l-spNav {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.l-spNav__list {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    visibility: hidden;
    z-index: 98;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    padding: 1em 0;
    transform: translateX(-100%);
    background: #530000;
    background: -moz-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#2e0001), to(#b7180c));
    background: -webkit-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -o-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -ms-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#2e0001, endColorstr=#b7180c,GradientType=0 );
    transition: 0.4s;
}

.l-spNav.is-active .l-spNav__list {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    visibility: visible;
    transform: translateX(0);
}

.l-spNav__item {
    -webkit-animation: 0.5s ease-in-out both;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
    animation: 0.5s ease-in-out both;
}

.l-spNav__item:nth-of-type(1) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}

.l-spNav__item:nth-of-type(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.l-spNav__item:nth-of-type(3) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.l-spNav__item:nth-of-type(4) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.l-spNav__item:nth-of-type(5) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.l-spNav__item:nth-of-type(6) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.l-spNav__item:nth-of-type(7) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}

.l-spNav.is-active .l-spNav__item {
    -webkit-animation-name: activeSpNav;
    animation-name: activeSpNav;
}

@-webkit-keyframes activeSpNav {
    0% {
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes activeSpNav {
    0% {
        -webkit-transform: translateY(1em);
        transform: translateY(1em);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.l-spNav__link {
    display: block;
    position: relative;
    padding: 1em 3em 1em 1em;
    text-decoration: none;
}

.l-spNav__link::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    font-size: 1.2em;
    line-height: 1;
    content: '';
}

.l-spNav__overlay {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    visibility: hidden;
    z-index: 97;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 9, 97, 0.5);
    opacity: 0;
    transition: 0.2s;
}

.l-spNav.is-active .l-spNav__overlay {
    visibility: visible;
    opacity: 1;
}

.l-spNavButton {
    display: block;
    z-index: 99;
    position: fixed;
    top: 1em;
    right: 1em;
    outline: none;
    cursor: pointer;
    pointer-events: all;
}

.l-spNavButton__inner {
    display: block;
    position: relative;
    width: 40px;
    height: 32px;
}

.l-spNavButton__inner::before {
    position: absolute;
    top: -1em;
    right: -1em;
    bottom: -1em;
    left: -1em;
    content: '';
}

.l-spNavButton__line {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    transform-origin: right;
    background: #fff;
    transition: 0.2s;
}

.l-spNavButton__line:nth-of-type(1) {
    top: 0;
}

.l-spNavButton__line:nth-of-type(2) {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    top: 50%;
    transform: translate(0, -50%);
    transition: 0.5s ease-in-out;
}

.l-spNavButton__line:nth-of-type(3) {
    bottom: 0;
}

.l-spNavButton.is-active .l-spNavButton__line {
    background: #ffffff;
}

.l-spNavButton.is-active .l-spNavButton__line:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.l-spNavButton.is-active .l-spNavButton__line:nth-of-type(2) {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    opacity: 0;
}

.l-spNavButton.is-active .l-spNavButton__line:nth-of-type(3) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.l-pcNav {
    -webkit-transform: translate3d(0, 0, 0);
    z-index: 99;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    background: #530000;
    background: -moz-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#2e0001), to(#b7180c));
    background: -webkit-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -o-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: -ms-linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    background: linear-gradient( #2e0001 0%, #530000 35%, #b7180c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#2e0001, endColorstr=#b7180c,GradientType=0 );
    /*background: url(../img/bg/nav.jpg) 50% repeat-x;*/
}

.l-pcNav.is-active {
    position: fixed;
}

.l-pcNav__list {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.l-pcNav a {
    display: block;
    position: relative;
    padding: 1.2rem 1.34rem 1.44rem;
    overflow: hidden;
}

.l-pcNav a::after {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transition: 0.15s linear;
    -o-transition: 0.15s linear;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    margin: auto;
    transform: translateY(100%);
    background: #ffffff;
    content: '';
    pointer-events: none;
    transition: 0.15s linear;
}

.l-pcNav a:hover::after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.l-pcNav img {
    display: block;
}

.container {
    max-width: 92%;
    margin-right: auto;
    margin-left: auto;
}

.alignr {
    text-align: right;
}

.outline {
    z-index: 10;
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.outline-top {
    padding-top: 0.4rem;
}

.outline-bottom {
    z-index: 10;
    position: relative;
    padding-bottom: 0.4rem;
}

.l-header {
    z-index: 10;
    /*background: url(../img/bg/bg-hero@sp.jpg) 50% 0/100% auto no-repeat;
    background-color: #000;
    background-position: bottom;*/
}

.head-main {
    z-index: 100;
    position: relative;
    width: 48%;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.shareWidget_item {
    line-height: 1;
}

.shareWidget__item:not(:last-child) {
    margin-right: 1rem;
}

.embet {
    position: relative;
    width: 100%;
    height: 0;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.embet iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spLinkBanner::after {
    display: block;
    clear: both;
    content: '';
}

.spLinkBanner > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 1%;
    float: left;
}

.otherLinkBanner::after {
    display: block;
    clear: both;
    content: '';
}

.otherLinkBanner > * {
    width: 48%;
    margin: 1%;
    float: left;
}

@-webkit-keyframes fadeAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes anime1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    90% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes anime1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    90% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


.hero {
    position: relative;
    padding-bottom: 32px;
    overflow: hidden;
    ;
}

.hero__pc {
    z-index: 10;
    position: absolute;
}

/*.hero__logo {
  margin-bottom: -13.333vw;
}*/

.hero__subContainer {
    z-index: 50;
    position: relative;
    padding: 10px 4% 0;
    margin-top: -77vw;
}

.hero__sub {
    text-align: center;
}

.hero__sub:not(:last-child) {
    margin-bottom: 1.2rem;
}

.hero__release {
    width: 100%;
    margin: -3vw auto 0;
}

.hero__action :hover {
    opacity: 0.7;
}

.hero__trailer,
.hero__special {
    width: 62.3%;
    margin: 15px auto 0;
}

.news {
    position: relative;
    width: 100%;
    height: 40.5vw;
    margin-top: 10px;
    margin-left: auto;
    background: url(../img/bg/news_bg@sp.png) 50% 0/100% auto no-repeat;
}

.news__title {
    position: absolute;
    top: 6px;
    /*width: 91.8%;*/
}

.news__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15% 4% 1rem 5%;
    overflow: hidden;
}

.news__body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-right: 1em;
    text-align: left;
    color: #000;
    /*text-shadow: 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%), 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%);*/
}

.news__date {
    padding: 0 1em;
    font-size: 1.2rem;
    line-height: 1.2;
}

.news__date:not(:first-child) {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px #000 solid;
}

.news__topic {
    padding: 0 1em;
    font-size: 14px;
    line-height: 1.6;
}

.news__topic a {
    display: inline-block;
}

.news__topic a:hover {
    text-decoration: underline;
}

.news__topic a span:before {
    display: inline;
    content: '▶︎';
}

.news .ps__thumb-y {
    background-color: rgb(149 149 155 / 30%)
        /*background-color: rgba(15, 9, 97, 0.3);*/
}

.news .ps__thumb-y:hover {
    background-color: rgba(149 149 155 / 0.3);
    /*background-color: rgba(15, 9, 97, 0.3);*/
}

.intro__bg {
    width: 100%;
    background-image: url(../img/bg/intro_bg@sp.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}

.intro__main {
    /*width: 100%;*/
    margin: 0 -4%;
}

.introCatch {
    z-index: 10;
    margin-bottom: 1.2rem;
}

.introCatch__head {
    z-index: 10;
    position: relative;
    margin-bottom: 0.8rem;
    color: #e6002d;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 0px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 0px -2px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 2px 2px 6px rgb(0 0 0 / 80%), -2px 2px 6px rgb(0 0 0 / 80%), 2px -2px 6px rgb(0 0 0 / 80%), -2px -2px 6px rgb(0 0 0 / 80%), 2px 0px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 0px -2px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 2px 2px 6px rgb(0 0 0 / 80%), -2px 2px 6px rgb(0 0 0 / 80%), 2px -2px 6px rgb(0 0 0 / 80%), -2px -2px 6px rgb(0 0 0 / 80%);
    font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
    /*font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;*/
}


.introCatch__head--image {
    display: none;
}

.introCatch__head span {
    font-size: 1.6rem;
}

.introCatch__head span.small {
    font-size: 1.1rem;
}

.introCatch__head span.large {
    font-size: 1.8rem;
}

.introCatch__row {
    position: relative;
}

.introCatch__row .introCatch__text {
    margin-bottom: 1.2rem;
}

.introCatch__text {
    z-index: 10;
    position: relative;
    margin-bottom: 0.8rem;
    /*color: #fff;*/
    font-size: 13px;
    text-align: justify;
    text-shadow: 2px 0px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 0px -2px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 2px 2px 6px rgb(0 0 0 / 80%), -2px 2px 6px rgb(0 0 0 / 80%), 2px -2px 6px rgb(0 0 0 / 80%), -2px -2px 6px rgb(0 0 0 / 80%), 2px 0px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 0px -2px 6px rgb(0 0 0 / 80%), -2px 0px 6px rgb(0 0 0 / 80%), 2px 2px 6px rgb(0 0 0 / 80%), -2px 2px 6px rgb(0 0 0 / 80%), 2px -2px 6px rgb(0 0 0 / 80%), -2px -2px 6px rgb(0 0 0 / 80%);
}

.introCatch__image {
    text-align: center;
}

.introCatch.introCatch--1 {
    margin-top: -38vw;
}

/*.introCatch--2 .introCatch__text {
    margin-bottom: -15vw;
}*/


.introCatch--4 .introCatch__image {
    margin-top: -19vw;
}

@media (max-width: 768px) {
    .introCatch__text.introCatch__text-sub {
        padding: 3vw;
        border: 1px solid;
        width: 100%;
        margin: 3vw auto 5vw;
        font-size: 0.85rem;
    }    
}

.introCatch--5 h3 {
    color: #76a32d;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 1.4rem;
    text-align: center;
}

.introCatch--5 .introCatch__row {
    border: 1px solid #ad7733;
}

.introCatch--5 .introCatch__head--text {
    padding-top: 0.5rem;
}

.introCatch--5 .introCatch__text {
    text-shadow: none;
    text-align: justify;
    font-size: 1.2rem;
    color: #ad7733;
    margin: 0 1.5rem 1rem;
}

.chart img {
    /*min-width: auto;*/
    min-width: 200%;
}

.staff {
    font-weight: bold;
    color: #fff;
    /*text-shadow: 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%), 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%);*/
}

.cast {
    display: block;
    position: relative;
    width: 92.7%;
    margin: 0 auto 1.2rem;
}

.cast--img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

/*.chart:hover {
    opacity: 0.7;
}*/

.prod__wrap {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.prod {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.2rem !important;
}

.prod__rug {
    margin-top: 6px;
    padding: 25% 10px 35px;
    background-color: rgba(183,24,12,0.45);
    /*border: solid 2px #a2aac6;*/
    /*background: url(../img/bg/prod_cell@sp.png) 50% 50%/cover no-repeat;*/
    /*background: rgba(255,255,255,0.6);
    border: 2px solid #d23549;*/
}

/*.rental .prod__rug {
    background: url(../img/bg/prod_rental@sp.png) 50% 50%/cover no-repeat;
}

.haishin .prod__rug,
.oa .prod__rug {
    background: url(../img/bg/prod_haishin-oa@sp.png) 50% 50%/cover no-repeat;
}*/

.rental .prod__rug,
.haishin .prod__rug,
.oa .prod__rug {
    /*border: 2px solid #6d3f02;*/
    /*font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;*/
}

.rental .prod__rug,
.haishin .prod__rug,
.oa .prod__rug {
    padding: 24% 1rem 2rem;
}

.prod__head {
    z-index: 100;
    position: absolute;
    top: 2rem;
    width: 52%;
    left: 0%;
}

.prod a {
    /*color: #710000;
  font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;*/
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.prod a:hover {
    opacity: .7;
}

.sell {
    position: relative;
}

.sell__jacket {
    width: 71.7%;
    margin: 0 auto 30px;
}

.sell__body {
    padding: 0 8.6%;
}

.sell + .sell {
    position: relative;
    margin-top: 45px;
    padding-top: 45px;
}

.sell + .sell:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
}

.sell__price span {
    font-size: 120%;
}

.haishin li,
.oa li {
    color: #ffed97;
    /*background: -webkit-linear-gradient(-90deg, #ffe673, #ffed97, #fff5c7, #fffbe9, #fff5c7, #ffed97, #ffe673);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    /*text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px -2px 2px #fff, -2px 0px 2px #fff, 2px 2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, -2px -2px 2px #fff, 2px 0px 2px #fff, -2px 0px 2px #fff, 0px -2px 2px #fff, -2px 0px 2px #fff, 2px 2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, -2px -2px 2px #fff;*/
}

.haishin li + li,
.oa li + li {
    margin-top: 8px;
}


.p-movieOuter {
    width: 980px
}

@media (max-width: 768px) {
    .p-movieOuter {
        width: 94%;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .p-movieOuter {
        display: table;
        margin-right: auto;
        margin-left: auto;
    }
}


.p-movie {
    position: relative;
    cursor: pointer;
}

@media (max-width: 768px) {
    .p-movie {
        margin: 0 2rem 2rem;
    }
}

@media (min-width: 769px) {
    .p-movie {
        width: 460px;
        margin: 1rem 1rem;
    }
}

@media (min-width: 769px) {
    .p-movie--row {
        float: left;
    }

    .p-movie--row:nth-of-type(2n + 1) {
        clear: both;
    }
}

.p-movie--large {
    margin: 2em 1em;
}

@media (min-width: 769px) {
    .p-movie--large {
        width: 555px;
        /*margin-right: auto;
		margin-left: auto;*/
        margin-left: 14rem;
    }
}

.p-movie__thumnail {
    position: relative;
}

.p-movie__thumnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /*background: url(../img/special/frame-scene.png) no-repeat; */
    background-size: contain;
}

.p-movie__icon {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: 1;
    pointer-events: none;
}

.p-movie__title {
    line-height: 1.55;
    color: #FFFFAE;
    font-weight: bold;
    text-align: center;
    padding: 0.75em 0;
    /*font-family: 游明朝体, YuMincho, 游明朝, "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;*/
}

@media (max-width: 768px) {
    .p-movie__title {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) {
    .p-movie__title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.p-movie__title--large {
    padding: 0.75em 0;
}

@media (max-width: 768px) {
    .p-movie__title--large {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media (min-width: 769px) {
    .p-movie__title--large {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.p-movie a {
    display: block;
    text-decoration: none;
}

.p-movie img {
    width: 100%;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.p-movie a:hover img {
    opacity: 0.75;
}



footer p {
    /*color: #553117;*/
    /*text-shadow: 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%), 2px 0px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 0px -2px 3px rgb(255 255 255 / 45%), -2px 0px 3px rgb(255 255 255 / 45%), 2px 2px 3px rgb(255 255 255 / 45%), -2px 2px 3px rgb(255 255 255 / 45%), 2px -2px 3px rgb(255 255 255 / 45%), -2px -2px 3px rgb(255 255 255 / 45%);*/
    /*font-weight: normal;
    /*font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;*/
}

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

.u-m-xxs {
    margin: 0.4rem;
}

.u-m-xs {
    margin: 0.8rem;
}

.u-m-s {
    margin: 1.2rem;
}

.u-m-m {
    margin: 2rem;
}

.u-m-l {
    margin: 3.2rem;
}

.u-m-xl {
    margin: 5.2rem;
}

.u-m-xxl {
    margin: 8.4rem;
}

.u-mt-0,
.u-my-0 {
    margin-top: 0;
}

.u-mt-xxs,
.u-my-xxs {
    margin-top: 0.4rem;
}

.u-mt-xs,
.u-my-xs {
    margin-top: 0.8rem;
}

.u-mt-s,
.u-my-s {
    margin-top: 1.2rem;
}

.u-mt-m,
.u-my-m {
    margin-top: 2rem;
}

.u-mt-l,
.u-my-l {
    margin-top: 3.2rem;
}

.u-mt-xl,
.u-my-xl {
    margin-top: 5.2rem;
}

.u-mt-xxl,
.u-my-xxl {
    margin-top: 8.4rem;
}

.u-mb-0,
.u-my-0 {
    margin-bottom: 0;
}

.u-mb-xxs,
.u-my-xxs {
    margin-bottom: 0.4rem;
}

.u-mb-xs,
.u-my-xs {
    margin-bottom: 0.8rem;
}

.u-mb-s,
.u-my-s {
    margin-bottom: 1.2rem;
}

.u-mb-m,
.u-my-m {
    margin-bottom: 2rem;
}

.u-mb-l,
.u-my-l {
    margin-bottom: 3.2rem;
}

.u-mb-xl,
.u-my-xl {
    margin-bottom: 5.2rem;
}

.u-mb-xxl,
.u-my-xxl {
    margin-bottom: 8.4rem;
}

.u-mr-0,
.u-mx-0 {
    margin-right: 0;
}

.u-mr-xxs,
.u-mx-xxs {
    margin-right: 0.4rem;
}

.u-mr-xs,
.u-mx-xs {
    margin-right: 0.8rem;
}

.u-mr-s,
.u-mx-s {
    margin-right: 1.2rem;
}

.u-mr-m,
.u-mx-m {
    margin-right: 2rem;
}

.u-mr-l,
.u-mx-l {
    margin-right: 3.2rem;
}

.u-mr-xl,
.u-mx-xl {
    margin-right: 5.2rem;
}

.u-mr-xxl,
.u-mx-xxl {
    margin-right: 8.4rem;
}

.u-ml-0,
.u-mx-0 {
    margin-left: 0;
}

.u-ml-xxs,
.u-mx-xxs {
    margin-left: 0.4rem;
}

.u-ml-xs,
.u-mx-xs {
    margin-left: 0.8rem;
}

.u-ml-s,
.u-mx-s {
    margin-left: 1.2rem;
}

.u-ml-m,
.u-mx-m {
    margin-left: 2rem;
}

.u-ml-l,
.u-mx-l {
    margin-left: 3.2rem;
}

.u-ml-xl,
.u-mx-xl {
    margin-left: 5.2rem;
}

.u-ml-xxl,
.u-mx-xxl {
    margin-left: 8.4rem;
}

.u-nm-xxs {
    margin: -0.4rem;
}

.u-nm-xs {
    margin: -0.8rem;
}

.u-nm-s {
    margin: -1.2rem;
}

.u-nm-m {
    margin: -2rem;
}

.u-nm-l {
    margin: -3.2rem;
}

.u-nm-xl {
    margin: -5.2rem;
}

.u-nm-xxl {
    margin: -8.4rem;
}

.u-nmt-xxs,
.u-nmy-xxs {
    margin-top: -0.4rem;
}

.u-nmt-xs,
.u-nmy-xs {
    margin-top: -0.8rem;
}

.u-nmt-s,
.u-nmy-s {
    margin-top: -1.2rem;
}

.u-nmt-m,
.u-nmy-m {
    margin-top: -2rem;
}

.u-nmt-l,
.u-nmy-l {
    margin-top: -3.2rem;
}

.u-nmt-xl,
.u-nmy-xl {
    margin-top: -5.2rem;
}

.u-nmt-xxl,
.u-nmy-xxl {
    margin-top: -8.4rem;
}

.u-nmb-xxs,
.u-nmy-xxs {
    margin-bottom: -0.4rem;
}

.u-nmb-xs,
.u-nmy-xs {
    margin-bottom: -0.8rem;
}

.u-nmb-s,
.u-nmy-s {
    margin-bottom: -1.2rem;
}

.u-nmb-m,
.u-nmy-m {
    margin-bottom: -2rem;
}

.u-nmb-l,
.u-nmy-l {
    margin-bottom: -3.2rem;
}

.u-nmb-xl,
.u-nmy-xl {
    margin-bottom: -5.2rem;
}

.u-nmb-xxl,
.u-nmy-xxl {
    margin-bottom: -8.4rem;
}

.u-nmr-xxs,
.u-nmx-xxs {
    margin-right: -0.4rem;
}

.u-nmr-xs,
.u-nmx-xs {
    margin-right: -0.8rem;
}

.u-nmr-s,
.u-nmx-s {
    margin-right: -1.2rem;
}

.u-nmr-m,
.u-nmx-m {
    margin-right: -2rem;
}

.u-nmr-l,
.u-nmx-l {
    margin-right: -3.2rem;
}

.u-nmr-xl,
.u-nmx-xl {
    margin-right: -5.2rem;
}

.u-nmr-xxl,
.u-nmx-xxl {
    margin-right: -8.4rem;
}

.u-nml-xxs,
.u-nmx-xxs {
    margin-left: -0.4rem;
}

.u-nml-xs,
.u-nmx-xs {
    margin-left: -0.8rem;
}

.u-nml-s,
.u-nmx-s {
    margin-left: -1.2rem;
}

.u-nml-m,
.u-nmx-m {
    margin-left: -2rem;
}

.u-nml-l,
.u-nmx-l {
    margin-left: -3.2rem;
}

.u-nml-xl,
.u-nmx-xl {
    margin-left: -5.2rem;
}

.u-nml-xxl,
.u-nmx-xxl {
    margin-left: -8.4rem;
}

.u-mbc-0 > :not(:last-child) {
    margin-bottom: 0;
}

.u-mbc-xxs > :not(:last-child) {
    margin-bottom: 0.4rem;
}

.u-mbc-xs > :not(:last-child) {
    margin-bottom: 0.8rem;
}

.u-mbc-s > :not(:last-child) {
    margin-bottom: 1.2rem;
}

.u-mbc-m > :not(:last-child) {
    margin-bottom: 2rem;
}

.u-mbc-l > :not(:last-child) {
    margin-bottom: 3.2rem;
}

.u-mbc-xl > :not(:last-child) {
    margin-bottom: 5.2rem;
}

.u-mbc-xxl > :not(:last-child) {
    margin-bottom: 8.4rem;
}

.u-p-0 {
    padding: 0;
}

.u-p-xxs {
    padding: 0.4rem;
}

.u-p-xs {
    padding: 0.8rem;
}

.u-p-s {
    padding: 1.2rem;
}

.u-p-m {
    padding: 2rem;
}

.u-p-l {
    padding: 3.2rem;
}

.u-p-xl {
    padding: 5.2rem;
}

.u-p-xxl {
    padding: 8.4rem;
}

.u-pt-0,
.u-py-0 {
    padding-top: 0;
}

.u-pt-xxs,
.u-py-xxs {
    padding-top: 0.4rem;
}

.u-pt-xs,
.u-py-xs {
    padding-top: 0.8rem;
}

.u-pt-s,
.u-py-s {
    padding-top: 1.2rem;
}

.u-pt-m,
.u-py-m {
    padding-top: 2rem;
}

.u-pt-l,
.u-py-l {
    padding-top: 3.2rem;
}

.u-pt-xl,
.u-py-xl {
    padding-top: 5.2rem;
}

.u-pt-xxl,
.u-py-xxl {
    padding-top: 8.4rem;
}

.u-pb-0,
.u-py-0 {
    padding-bottom: 0;
}

.u-pb-xxs,
.u-py-xxs {
    padding-bottom: 0.4rem;
}

.u-pb-xs,
.u-py-xs {
    padding-bottom: 0.8rem;
}

.u-pb-s,
.u-py-s {
    padding-bottom: 1.2rem;
}

.u-pb-m,
.u-py-m {
    padding-bottom: 2rem;
}

.u-pb-l,
.u-py-l {
    padding-bottom: 3.2rem;
}

.u-pb-xl,
.u-py-xl {
    padding-bottom: 5.2rem;
}

.u-pb-xxl,
.u-py-xxl {
    padding-bottom: 8.4rem;
}

.u-pr-0,
.u-px-0 {
    padding-right: 0;
}

.u-pr-xxs,
.u-px-xxs {
    padding-right: 0.4rem;
}

.u-pr-xs,
.u-px-xs {
    padding-right: 0.8rem;
}

.u-pr-s,
.u-px-s {
    padding-right: 1.2rem;
}

.u-pr-m,
.u-px-m {
    padding-right: 2rem;
}

.u-pr-l,
.u-px-l {
    padding-right: 3.2rem;
}

.u-pr-xl,
.u-px-xl {
    padding-right: 5.2rem;
}

.u-pr-xxl,
.u-px-xxl {
    padding-right: 8.4rem;
}

.u-pl-0,
.u-px-0 {
    padding-left: 0;
}

.u-pl-xxs,
.u-px-xxs {
    padding-left: 0.4rem;
}

.u-pl-xs,
.u-px-xs {
    padding-left: 0.8rem;
}

.u-pl-s,
.u-px-s {
    padding-left: 1.2rem;
}

.u-pl-m,
.u-px-m {
    padding-left: 2rem;
}

.u-pl-l,
.u-px-l {
    padding-left: 3.2rem;
}

.u-pl-xl,
.u-px-xl {
    padding-left: 5.2rem;
}

.u-pl-xxl,
.u-px-xxl {
    padding-left: 8.4rem;
}

.u-w-20 {
    width: 20%;
}

.u-w-40 {
    width: 40%;
}

.u-w-60 {
    width: 60%;
}

.u-w-80 {
    width: 80%;
}

.u-w-100 {
    width: 100%;
}

.u-w-auto {
    width: auto;
}

.u-mw-10 {
    max-width: 10%;
}

.u-mw-20 {
    max-width: 20%;
}

.u-mw-30 {
    max-width: 30%;
}

.u-mw-40 {
    max-width: 40%;
}

.u-mw-50 {
    max-width: 50%;
}

.u-mw-60 {
    max-width: 60%;
}

.u-mw-70 {
    max-width: 70%;
}

.u-mw-80 {
    max-width: 80%;
}

.u-mw-90 {
    max-width: 90%;
}

.u-mw-100 {
    max-width: 100%;
}

.u-mw-none {
    max-width: none;
}

.u-fs-70 {
    font-size: 70%;
}

.u-fs-80 {
    font-size: 80%;
}

.u-fs-90 {
    font-size: 90%;
}

.u-fs-110 {
    font-size: 110%;
}

.u-fs-120 {
    font-size: 120%;
}

.u-fs-130 {
    font-size: 130%;
}

.u-fs-140 {
    font-size: 140%;
}

.u-fs-150 {
    font-size: 150%;
}

.u-fs-160 {
    font-size: 160%;
}

.u-fw-s {
    font-weight: 400;
}

.u-fw-m {
    font-weight: 500;
}

.u-fw-l {
    font-weight: bold;
}

.u-fsy-i {
    font-style: italic;
}

.u-fsy-n {
    font-style: normal;
}

.u-lh-110 {
    line-height: 1.1;
}

.u-lh-120 {
    line-height: 1.2;
}

.u-lh-130 {
    line-height: 1.3;
}

.u-lh-140 {
    line-height: 1.4;
}

.u-lh-150 {
    line-height: 1.5;
}

.u-lh-160 {
    line-height: 1.6;
}

.u-lh-170 {
    line-height: 1.7;
}

.u-lh-180 {
    line-height: 1.8;
}

.u-lh-190 {
    line-height: 1.9;
}

.u-ta-r {
    text-align: right;
}

.u-ta-c {
    text-align: center;
}

.u-ta-l {
    text-align: left;
}

.u-ta-j {
    text-align: justify;
}

.u-td-lt {
    text-decoration: line-through;
}

.u-td-ul {
    text-decoration: underline;
}

.u-c-white {
    color: #fff;
}

.u-c-red {
    color: #ff0000;
}

.u-d-b {
    display: block;
}

.u-d-n {
    display: none;
}

.u-d-f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.u-d-i {
    display: inline;
}

.u-d-t {
    display: table;
}

.u-ai-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.u-ai-e {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.u-jc-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.u-jc-e {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.u-jc-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.u-jc-sa {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.u-fd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.u-fd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.u-fl-l {
    float: left;
}

.u-fl-r {
    float: right;
}

.i-fl-n {
    float: none;
}

.u-fluid {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.u-disable {
    cursor: default;
    opacity: 0.4;
    pointer-events: none;
}

.u-nowrap {
    white-space: nowrap;
}

.u-icon {
    font-size: 95%;
    line-height: 1;
    vertical-align: super;
}

.u-center {
    display: table;
    margin-right: auto;
    margin-left: auto;
}

.u-clearfix::after {
    display: block;
    clear: both;
    content: '';
}

.u-visuallyHidden {
    clip: rect(0, 0, 0, 0);
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    white-space: nowrap;
}

.u-bullet,
.u-bullets > * {
    padding-left: 1em;
    text-indent: -1em;
}

.u-bullet > *,
.u-bullets > * > * {
    text-indent: 0;
}

.u-hanging,
.u-hangings > * {
    display: table;
}

.u-hanging > *,
.u-hangings > * > * {
    display: table-cell;
    position: relative;
    right: -1px;
    white-space: nowrap;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}



@media (min-width: 320px) {
    html {
        font-size: calc((14 - 12) * ((100vw - 320px) / (768 - 320)) + 75%);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 87.5%;
    }
}

@media (min-width: 769px) {

    img,
    svg {
        max-width: none;
    }

    #cboxPrevious {
        left: -30px;
    }

    #cboxNext {
        right: -30px;
    }

    .cbox-full-image img {
        width: 100% !important;
        height: auto !important;
    }

    /*.body {
        background: url(../img/bg/contents_bg@pc.jpg) 50% 0/100% auto no-repeat;
        background-attachment: fixed;
    }*/


    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .l-main {
        z-index: 5;
        min-width: 960px;
        background: none;
    }

    .container {
        max-width: 960px;
    }

    .outline {
        padding-top: 3rem;
        padding-bottom: 3.2rem;
    }

    .head-main {
        width: 100%;
        margin: 3rem auto 2rem;
    }

    .otherLinkBanner {
        padding: 0 12px;
    }

    .otherLinkBanner > * {
        width: auto;
        margin: 6px 2px 0;
    }

    .hero {
        height: 900px;
        padding: 0;
        background: url(../img/bg/main@pc.jpg) 50% 100%/cover no-repeat;
    }
    
    .hero::before {
        content: '';
        display: inline-block;
        width: 100%;
        height: 900px;
        background: url(../img/bg/bg-hero-bottom.png) no-repeat 50% 100%;
        background-size: cover;
        position: absolute;
        z-index: 3;
    }

    .hero__mainContainer {
        position: relative;
        width: 962px;
        height: 100%;
        margin: 0 auto;
    }

    .hero__logo {
        z-index: 2;
        position: absolute;
        bottom: 413px;
        left: -25px;
        margin: 0;
    }

    .hero__logo .hero__pc {
        /*opacity: 0;*/
    }

    .hero__catch1 {
        z-index: 5;
        top: 105px;
        left: 426px;
    }
    
    .hero__catch2 {
        z-index: 5;
        top: 38px;
        left: -63px;
    }

    .hero__cast {
        z-index: 1;
        top: -2px;
        left: -52px;
        height: 100%;
    }

    .hero__cast2 {
        z-index: 1;
        bottom: -567px;
        left: 2px;
        height: 100%;
    }

    .hero__cast3 {
        z-index: 1;
        top: 766px;
        left: 244px;
        height: 100%;
    }

    .hero__cast-1 {
        top: 0;
        left: 74px;
        /*opacity: 0;*/
    }

    .hero__cast-2 {
        bottom: 0;
        left: 53px;
        /*opacity: 0;*/
    }

    .hero__clock {
        top: 335px;
        left: 391px;
        /*opacity: 0;*/
    }
    
    .bg__hero__bottom {
        position: absolute;
        bottom: 1px;
        left: -967px;
        z-index: 1;
    }

    .hero__subContainer {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 969px;
        height: 100%;
        margin: auto;
        padding: 0;
        background: none;
    }

    .hero__sub {
        position: absolute;
        /*opacity: 0;*/
    }

    .hero__sub:not(:last-child) {
        margin-bottom: 0;
    }

    .hero__release {
        bottom: 20px;
        left: -1px;
        margin: 0;
    }

    .hero__special {
        height: auto;
        margin: 0;
        top: 218px;
        right: -227px;
    }

    .hero__trailer {
        height: auto;
        margin: 0;
        top: 58px;
        right: -227px;
    }

    .hero__news {
        bottom:108px;
        right: 43px;
    }

    .hero__share {
        right: -31px;
        top: 7px;
    }

    .shareWidget {
        display: flex;
        justify-content: center;
    }

    .shareWidget__item:not(:last-child) {
        margin-right: .7em;
    }

    .shareWidget__item {
        line-height: 1;
    }

    .news {
        display: block;
        width: 346px;
        height: 160px;
        margin: 0;
        font-size: 0.9rem;
        background: url(../img/bg/news_bg@pc.png) 50% 0/100% auto no-repeat;
    }

    .news__inner {
        padding: 52px 10px 7px 24px;
    }

    .news__date {
        font-size: 14px;
        line-height: 1.6;
    }

    .news__topic {
        font-size: 13px;
    }

    .intro {
        padding-top: 5.2rem;
        background: none;
    }

    .intro__bg {
        width: 100%;
        background-image: url(../img/bg/intro_bg@pc.png);
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
    }

    .intro__main {
        z-index: 5;
        position: relative;
        left: -64px;
    }

    .introCatch {
        position: relative;
        margin-bottom: 2.2rem;
    }

    .introCatch__head--image {
        display: block;
        margin-left: -1rem;
    }

    .introCatch__head--text {
        clip: rect(0, 0, 0, 0);
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        border: 0;
        white-space: nowrap;
    }

    .introCatch__text {
        font-size: 14px;
    }

    .introCatch__image {
        z-index: 15;
    }

    .introCatch.introCatch--1 {
        margin-top: 1.8rem;
    }

    .introCatch--1 .introCatch__text {
        margin-bottom: 1rem;
        margin-top: -10px;
        padding-right: 418px;
    }
    
    .introCatch__text.introCatch__text-sub {
        padding: 13px;
        border: 1px solid;
        width: 542px;
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }

    .introCatch--1 .introCatch__image {
        z-index: 1;
        margin-top: -570px;
    }

    .introCatch.introCatch--2 {
        margin-top: -332px;
    }
    
    .introCatch--2 .introCatch__head {
        padding-left: 456px;
    }
    
    .introCatch--2 .introCatch__image {
        z-index: 1;
        margin-top: 30px;
    }

    .introCatch--4 .introCatch__text {
        padding-right: 407px;
    }

    .introCatch--4 .introCatch__image {
        z-index: 1;
        margin-top: -382px;
    }


    .castOuter {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .cast {
        width: 49%;
        margin: 0 0.4rem 0.7rem 0;
    }
    
    .cast--img img {
        width: 474px;
    }

    .chart img {
        min-width: auto;
    }


    .prod {
        margin-bottom: 2rem !important;
        border-radius: 10px;
    }

    .prod__rug {
        margin-top: 6px;
        padding: 130px 20px 40px;
        /*background: url(../img/bg/prod_cell@pc.png) 50% 50%/cover no-repeat;*/
    }

    /*.rental .prod__rug {
        background: url(../img/bg/prod_rental@pc.png) 50% 50%/cover no-repeat;
    }

    .haishin .prod__rug,
    .oa .prod__rug {
        background: url(../img/bg/prod_haishin-oa@pc.png) 50% 50%/cover no-repeat;
    }*/
    
    .prod__head {
        top: 33px;
        width: 52%;
        left: 0px;
    }

    .sell {
        -webkit-box-align: center;
        -ms-flex-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
    }

    .sell__jacket {
        width: 50%;
        margin: 0 auto;
        padding: 0 58px;
    }

    .sell__body {
        width: 50%;
        padding: 0 64px 0 0;
    }

    .sell img {
        width: 100%;
        height: auto;
    }

    .sell + .sell {
        margin-top: 44px;
        padding-top: 44px;
    }

    .rental .prod__rug {
        padding-top: 110px;
        text-align: center;
    }

    .rental .prod__rug img {
        max-width: 650px;
    }

    /*.haishin .prod__rug,
    .oa .prod__rug {
        padding-top: 110px;
    }

    .rental .prod__rug,
    .haishin .prod__rug,
    .oa .prod__rug {
        padding: 110px 10px 50px;
    }*/
    
    
    /*haishin oa 横並び*/
    .prod.haishin {
        margin-right: 15px;
    }

    .haishin .prod__rug, .oa .prod__rug {
        padding-top: 110px;
        padding: 78px 50px 50px;
    }

    .prod.haishin {
        margin-right: 15px;
    }

    .prod.haishin, .prod.oa {
        width: 49.2%;
    }
    

    .prod a {
        font-size: 2rem;
    }

    .haishin li,
    .oa li {
        font-size: 24px;
    }

    .u-pc-m-0 {
        margin: 0;
    }

    .u-pc-m-xxs {
        margin: 0.4rem;
    }

    .u-pc-m-xs {
        margin: 0.8rem;
    }

    .u-pc-m-s {
        margin: 1.2rem;
    }

    .u-pc-m-m {
        margin: 2rem;
    }

    .u-pc-m-l {
        margin: 3.2rem;
    }

    .u-pc-m-xl {
        margin: 5.2rem;
    }

    .u-pc-m-xxl {
        margin: 8.4rem;
    }

    .u-pc-mt-0,
    .u-pc-my-0 {
        margin-top: 0;
    }

    .u-pc-mt-xxs,
    .u-pc-my-xxs {
        margin-top: 0.4rem;
    }

    .u-pc-mt-xs,
    .u-pc-my-xs {
        margin-top: 0.8rem;
    }

    .u-pc-mt-s,
    .u-pc-my-s {
        margin-top: 1.2rem;
    }

    .u-pc-mt-m,
    .u-pc-my-m {
        margin-top: 2rem;
    }

    .u-pc-mt-l,
    .u-pc-my-l {
        margin-top: 3.2rem;
    }

    .u-pc-mt-xl,
    .u-pc-my-xl {
        margin-top: 5.2rem;
    }

    .u-pc-mt-xxl,
    .u-pc-my-xxl {
        margin-top: 8.4rem;
    }

    .u-pc-mb-0,
    .u-pc-my-0 {
        margin-bottom: 0;
    }

    .u-pc-mb-xxs,
    .u-pc-my-xxs {
        margin-bottom: 0.4rem;
    }

    .u-pc-mb-xs,
    .u-pc-my-xs {
        margin-bottom: 0.8rem;
    }

    .u-pc-mb-s,
    .u-pc-my-s {
        margin-bottom: 1.2rem;
    }

    .u-pc-mb-m,
    .u-pc-my-m {
        margin-bottom: 2rem;
    }

    .u-pc-mb-l,
    .u-pc-my-l {
        margin-bottom: 3.2rem;
    }

    .u-pc-mb-xl,
    .u-pc-my-xl {
        margin-bottom: 5.2rem;
    }

    .u-pc-mb-xxl,
    .u-pc-my-xxl {
        margin-bottom: 8.4rem;
    }

    .u-pc-mr-0,
    .u-pc-mx-0 {
        margin-right: 0;
    }

    .u-pc-mr-xxs,
    .u-pc-mx-xxs {
        margin-right: 0.4rem;
    }

    .u-pc-mr-xs,
    .u-pc-mx-xs {
        margin-right: 0.8rem;
    }

    .u-pc-mr-s,
    .u-pc-mx-s {
        margin-right: 1.2rem;
    }

    .u-pc-mr-m,
    .u-pc-mx-m {
        margin-right: 2rem;
    }

    .u-pc-mr-l,
    .u-pc-mx-l {
        margin-right: 3.2rem;
    }

    .u-pc-mr-xl,
    .u-pc-mx-xl {
        margin-right: 5.2rem;
    }

    .u-pc-mr-xxl,
    .u-pc-mx-xxl {
        margin-right: 8.4rem;
    }

    .u-pc-ml-0,
    .u-pc-mx-0 {
        margin-left: 0;
    }

    .u-pc-ml-xxs,
    .u-pc-mx-xxs {
        margin-left: 0.4rem;
    }

    .u-pc-ml-xs,
    .u-pc-mx-xs {
        margin-left: 0.8rem;
    }

    .u-pc-ml-s,
    .u-pc-mx-s {
        margin-left: 1.2rem;
    }

    .u-pc-ml-m,
    .u-pc-mx-m {
        margin-left: 2rem;
    }

    .u-pc-ml-l,
    .u-pc-mx-l {
        margin-left: 3.2rem;
    }

    .u-pc-ml-xl,
    .u-pc-mx-xl {
        margin-left: 5.2rem;
    }

    .u-pc-ml-xxl,
    .u-pc-mx-xxl {
        margin-left: 8.4rem;
    }

    .u-pc-nm-xxs {
        margin: -0.4rem;
    }

    .u-pc-nm-xs {
        margin: -0.8rem;
    }

    .u-pc-nm-s {
        margin: -1.2rem;
    }

    .u-pc-nm-m {
        margin: -2rem;
    }

    .u-pc-nm-l {
        margin: -3.2rem;
    }

    .u-pc-nm-xl {
        margin: -5.2rem;
    }

    .u-pc-nm-xxl {
        margin: -8.4rem;
    }

    .u-pc-nmt-xxs,
    .u-pc-nmy-xxs {
        margin-top: -0.4rem;
    }

    .u-pc-nmt-xs,
    .u-pc-nmy-xs {
        margin-top: -0.8rem;
    }

    .u-pc-nmt-s,
    .u-pc-nmy-s {
        margin-top: -1.2rem;
    }

    .u-pc-nmt-m,
    .u-pc-nmy-m {
        margin-top: -2rem;
    }

    .u-pc-nmt-l,
    .u-pc-nmy-l {
        margin-top: -3.2rem;
    }

    .u-pc-nmt-xl,
    .u-pc-nmy-xl {
        margin-top: -5.2rem;
    }

    .u-pc-nmt-xxl,
    .u-pc-nmy-xxl {
        margin-top: -8.4rem;
    }

    .u-pc-nmb-xxs,
    .u-pc-nmy-xxs {
        margin-bottom: -0.4rem;
    }

    .u-pc-nmb-xs,
    .u-pc-nmy-xs {
        margin-bottom: -0.8rem;
    }

    .u-pc-nmb-s,
    .u-pc-nmy-s {
        margin-bottom: -1.2rem;
    }

    .u-pc-nmb-m,
    .u-pc-nmy-m {
        margin-bottom: -2rem;
    }

    .u-pc-nmb-l,
    .u-pc-nmy-l {
        margin-bottom: -3.2rem;
    }

    .u-pc-nmb-xl,
    .u-pc-nmy-xl {
        margin-bottom: -5.2rem;
    }

    .u-pc-nmb-xxl,
    .u-pc-nmy-xxl {
        margin-bottom: -8.4rem;
    }

    .u-pc-nmr-xxs,
    .u-pc-nmx-xxs {
        margin-right: -0.4rem;
    }

    .u-pc-nmr-xs,
    .u-pc-nmx-xs {
        margin-right: -0.8rem;
    }

    .u-pc-nmr-s,
    .u-pc-nmx-s {
        margin-right: -1.2rem;
    }

    .u-pc-nmr-m,
    .u-pc-nmx-m {
        margin-right: -2rem;
    }

    .u-pc-nmr-l,
    .u-pc-nmx-l {
        margin-right: -3.2rem;
    }

    .u-pc-nmr-xl,
    .u-pc-nmx-xl {
        margin-right: -5.2rem;
    }

    .u-pc-nmr-xxl,
    .u-pc-nmx-xxl {
        margin-right: -8.4rem;
    }

    .u-pc-nml-xxs,
    .u-pc-nmx-xxs {
        margin-left: -0.4rem;
    }

    .u-pc-nml-xs,
    .u-pc-nmx-xs {
        margin-left: -0.8rem;
    }

    .u-pc-nml-s,
    .u-pc-nmx-s {
        margin-left: -1.2rem;
    }

    .u-pc-nml-m,
    .u-pc-nmx-m {
        margin-left: -2rem;
    }

    .u-pc-nml-l,
    .u-pc-nmx-l {
        margin-left: -3.2rem;
    }

    .u-pc-nml-xl,
    .u-pc-nmx-xl {
        margin-left: -5.2rem;
    }

    .u-pc-nml-xxl,
    .u-pc-nmx-xxl {
        margin-left: -8.4rem;
    }

    .u-pc-mbc-0 > :not(:last-child) {
        margin-bottom: 0;
    }

    .u-pc-mbc-xxs > :not(:last-child) {
        margin-bottom: 0.4rem;
    }

    .u-pc-mbc-xs > :not(:last-child) {
        margin-bottom: 0.8rem;
    }

    .u-pc-mbc-s > :not(:last-child) {
        margin-bottom: 1.2rem;
    }

    .u-pc-mbc-m > :not(:last-child) {
        margin-bottom: 2rem;
    }

    .u-pc-mbc-l > :not(:last-child) {
        margin-bottom: 3.2rem;
    }

    .u-pc-mbc-xl > :not(:last-child) {
        margin-bottom: 5.2rem;
    }

    .u-pc-mbc-xxl > :not(:last-child) {
        margin-bottom: 8.4rem;
    }

    .u-pc-p-0 {
        padding: 0;
    }

    .u-pc-p-xxs {
        padding: 0.4rem;
    }

    .u-pc-p-xs {
        padding: 0.8rem;
    }

    .u-pc-p-s {
        padding: 1.2rem;
    }

    .u-pc-p-m {
        padding: 2rem;
    }

    .u-pc-p-l {
        padding: 3.2rem;
    }

    .u-pc-p-xl {
        padding: 5.2rem;
    }

    .u-pc-p-xxl {
        padding: 8.4rem;
    }

    .u-pc-pt-0,
    .u-pc-py-0 {
        padding-top: 0;
    }

    .u-pc-pt-xxs,
    .u-pc-py-xxs {
        padding-top: 0.4rem;
    }

    .u-pc-pt-xs,
    .u-pc-py-xs {
        padding-top: 0.8rem;
    }

    .u-pc-pt-s,
    .u-pc-py-s {
        padding-top: 1.2rem;
    }

    .u-pc-pt-m,
    .u-pc-py-m {
        padding-top: 2rem;
    }

    .u-pc-pt-l,
    .u-pc-py-l {
        padding-top: 3.2rem;
    }

    .u-pc-pt-xl,
    .u-pc-py-xl {
        padding-top: 5.2rem;
    }

    .u-pc-pt-xxl,
    .u-pc-py-xxl {
        padding-top: 8.4rem;
    }

    .u-pc-pb-0,
    .u-pc-py-0 {
        padding-bottom: 0;
    }

    .u-pc-pb-xxs,
    .u-pc-py-xxs {
        padding-bottom: 0.4rem;
    }

    .u-pc-pb-xs,
    .u-pc-py-xs {
        padding-bottom: 0.8rem;
    }

    .u-pc-pb-s,
    .u-pc-py-s {
        padding-bottom: 1.2rem;
    }

    .u-pc-pb-m,
    .u-pc-py-m {
        padding-bottom: 2rem;
    }

    .u-pc-pb-l,
    .u-pc-py-l {
        padding-bottom: 3.2rem;
    }

    .u-pc-pb-xl,
    .u-pc-py-xl {
        padding-bottom: 5.2rem;
    }

    .u-pc-pb-xxl,
    .u-pc-py-xxl {
        padding-bottom: 8.4rem;
    }

    .u-pc-pr-0,
    .u-pc-px-0 {
        padding-right: 0;
    }

    .u-pc-pr-xxs,
    .u-pc-px-xxs {
        padding-right: 0.4rem;
    }

    .u-pc-pr-xs,
    .u-pc-px-xs {
        padding-right: 0.8rem;
    }

    .u-pc-pr-s,
    .u-pc-px-s {
        padding-right: 1.2rem;
    }

    .u-pc-pr-m,
    .u-pc-px-m {
        padding-right: 2rem;
    }

    .u-pc-pr-l,
    .u-pc-px-l {
        padding-right: 3.2rem;
    }

    .u-pc-pr-xl,
    .u-pc-px-xl {
        padding-right: 5.2rem;
    }

    .u-pc-pr-xxl,
    .u-pc-px-xxl {
        padding-right: 8.4rem;
    }

    .u-pc-pl-0,
    .u-pc-px-0 {
        padding-left: 0;
    }

    .u-pc-pl-xxs,
    .u-pc-px-xxs {
        padding-left: 0.4rem;
    }

    .u-pc-pl-xs,
    .u-pc-px-xs {
        padding-left: 0.8rem;
    }

    .u-pc-pl-s,
    .u-pc-px-s {
        padding-left: 1.2rem;
    }

    .u-pc-pl-m,
    .u-pc-px-m {
        padding-left: 2rem;
    }

    .u-pc-pl-l,
    .u-pc-px-l {
        padding-left: 3.2rem;
    }

    .u-pc-pl-xl,
    .u-pc-px-xl {
        padding-left: 5.2rem;
    }

    .u-pc-pl-xxl,
    .u-pc-px-xxl {
        padding-left: 8.4rem;
    }

    .u-pc-w-20 {
        width: 20%;
    }

    .u-pc-w-40 {
        width: 40%;
    }

    .u-pc-w-60 {
        width: 60%;
    }

    .u-pc-w-80 {
        width: 80%;
    }

    .u-pc-w-100 {
        width: 100%;
    }

    .u-pc-w-auto {
        width: auto;
    }

    .u-pc-mw-10 {
        max-width: 10%;
    }

    .u-pc-mw-20 {
        max-width: 20%;
    }

    .u-pc-mw-30 {
        max-width: 30%;
    }

    .u-pc-mw-40 {
        max-width: 40%;
    }

    .u-pc-mw-50 {
        max-width: 50%;
    }

    .u-pc-mw-60 {
        max-width: 60%;
    }

    .u-pc-mw-70 {
        max-width: 70%;
    }

    .u-pc-mw-80 {
        max-width: 80%;
    }

    .u-pc-mw-90 {
        max-width: 90%;
    }

    .u-pc-mw-100 {
        max-width: 100%;
    }

    .u-pc-mw-none {
        max-width: none;
    }

    .u-pc-fs-70 {
        font-size: 70%;
    }

    .u-pc-fs-80 {
        font-size: 80%;
    }

    .u-pc-fs-90 {
        font-size: 90%;
    }

    .u-pc-fs-110 {
        font-size: 110%;
    }

    .u-pc-fs-120 {
        font-size: 120%;
    }

    .u-pc-fs-130 {
        font-size: 130%;
    }

    .u-pc-fs-140 {
        font-size: 140%;
    }

    .u-pc-fs-150 {
        font-size: 150%;
    }

    .u-pc-fs-160 {
        font-size: 160%;
    }

    .u-pc-d-b {
        display: block;
    }

    .u-pc-d-n {
        display: none;
    }

    .u-pc-d-f {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .u-pc-d-i {
        display: inline;
    }

    .u-pc-d-t {
        display: table;
    }

    .u-pc-fluid {
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    }

    .u-pc-center {
        display: table;
        margin-right: auto;
        margin-left: auto;
    }
}

/*# sourceMappingURL=main.css.map */
