/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

@media all {
    .lightbox {
        display: none;
        height: 100vh;
    }
    .lightbox-bg {
        position: absolute;
        left: 0;
        top: 0;
        height: 200%;
        width: 100%;
    }
    .lightbox#image1 .lightbox-bg {background: rgba(0, 64, 128, .9);}
    /*.lightbox#image2 {justify-content: flex-end;}*/
    .lightbox#image2 .lightbox-bg {background: rgba(0, 64, 128, .9);}
    .lightbox#image3 .lightbox-bg {background: rgba(0, 64, 128, .9);}
    .lightbox#image6 .lightbox-bg {background: rgba(0, 64, 128, .9);}

    .lightbox#image1-sp .lightbox-bg {background: rgba(0, 64, 128, .9);}
    .lightbox#image2-sp .lightbox-bg {background: rgba(0, 64, 128, .9); /*justify-content: flex-end;*/}
    .lightbox#image3-sp .lightbox-bg {background: rgba(0, 64, 128, .9);}
    .lightbox#image6-sp .lightbox-bg {background: rgba(0, 64, 128, .9);}

    .featherlight {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        background: #333;
        background: rgba(0, 0, 0, 0)
    }
    .featherlight:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle
    }
    .featherlight .featherlight-content {
        /*position:relative;*/
        text-align: left;
        vertical-align: bottom;
        display: inline-block;
        overflow: visible;
        padding: 0;
        width: 100%;
        cursor: auto;
        white-space: normal
    }
    .featherlight .featherlight-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .featherlight .featherlight-inner img{
        position: relative;
        z-index: 5;
        max-height: 640px;
        pointer-events: none;
    }
    .featherlight .featherlight-close-icon {
        background: url('../../img/content/ico_close_circle.png') no-repeat;
        position: absolute;
        z-index: 9999;
        top: 20px;
        right: 20px;
        line-height: 25px;
        height: 40px;
        width: 40px;
        cursor: pointer;
        text-align: center;
        font-family: Arial, sans-serif;
        color: #000;
        border: 0;
        padding: 0;
        text-indent: -10000px;
    }
    .featherlight .featherlight-close-icon::-moz-focus-inner {
        border: 0;
        padding: 0
    }
    .featherlight .featherlight-image {
        width: 100%
    }
    .featherlight-iframe .featherlight-content {
        border-bottom: 0;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll
    }
    .featherlight iframe {
        border: 0
    }
    .featherlight * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
}







@media screen and (min-width: 0px) and (max-width: 800px) {



    .featherlight .featherlight-inner img{
        max-height: none;
        width: 85.5%;
        max-width: 375px;
    }




}