@charset "utf-8";

.itemdata_list{
    display: flex;
    flex-wrap: wrap;
    margin: 95px -25px 0;
}
.itemdata_list li{
    width: calc(100% / 3 - 50px);
    margin: 0 25px;
}
.itemdata_list li:nth-child(n+4){
    margin-top: 60px;
}
.itemdata_list a{
    display: block;
}


.itemdata_list_img{
    padding-top: 58.1%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff;
}

.itemdata_list_img span{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -moz-background-size:cover;
    background-size:cover;
    background-position: 50%;
    background-repeat: no-repeat;

    transition: transform 600ms cubic-bezier(.165,.84,.44,1);  
}


.itemdata_list_ttl{
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.4;
}

/* ----------------------------------- */

.itemdata_list_load{
    text-align: center;
    margin: 140px 0 0;
}

.itemdata_list_load .load_svg{
    position: relative;
    z-index: 1;
    animation: loading 2s infinite linear;
}

.itemdata_list_load .load_svg .circle1{
    animation: loader 2s infinite;
    stroke-dasharray: 125;
}

@keyframes loading {
    from { transform: none; }
    to { transform: rotate(-360deg); }
}
@keyframes loader {
    from { stroke-dashoffset: -125; }
    to { stroke-dashoffset: 125; }
}

/* ----------------------------------- */
.movie_link {
    display: flex;
    justify-content: center;
    margin: 140px 0 97px;
}
/* ----------------------------------- */
.content_popup{
    visibility: hidden;
}
.content_popup.view {
    visibility: visible;
}
.content_popup_main{
    padding: 0 5%;
    position: absolute;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 400ms ease;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
}
.content_popup.on .content_popup_main{
    opacity: 1;

}


.content_popup_inner{
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    max-width: 1070px;
    width: 100%;
    /* margin: 0 auto; */
    background: #243846;
    /* height: 200px; */
    /* border-radius: 40px; */
    /* position: relative; */
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX( -50%);
    z-index: 1;
    padding: 39px 4.4%;
}
.content_popup_bg{
    position: fixed;
    z-index: 400;
    /* background: rgba(255,255,255,0.5); */
    background: rgba(15,15,15,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
}

.content_popup.on .content_popup_bg{
    opacity: 1;
}

.content_popup_close{
    position: absolute;
    z-index: 1;
    right: -11px;
    top: -50px;
    width: 50px;
    height: 50px;
    /* background: #ff5a3c; */
    border-radius: 100px;
}
.content_popup_close span{
    display: none;
}
.content_popup_close:before,
.content_popup_close:after{
    content: "";
    z-index: 1;
    position: absolute;
    background: #ffffff;
    width: 31px;
    height: 1px;
    top:0;
    bottom: 0;
    right:0;
    left: 0;
    margin: auto;
    border-radius: 10px;
    transform: rotate(45deg);
}
.content_popup_close:before{
    transform: rotate(135deg);
}

.photos_html{
    text-align: center;
    position: relative;
    z-index: 1;
}
.photos_html img{
    width: 100%;
}
.photos_html iframe{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media screen and (min-width: 641px) {
    .item_list a:hover,
    .itemdata_list a:hover{
        color: #0279ff;
    }

    .item_list a:hover .item_list_img span{
        transform: scale(1.15);
    }
    .itemdata_list a:hover span{
        transform: scale(1.15);
    }
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
    .itemdata_list{
        justify-content: space-between;
    }
    .itemdata_list li{
        width: calc(100% / 2 - 50px);
        margin: 0 25px;
    }
    .itemdata_list li:nth-child(n+3){
        margin-top: 60px;
    }
}

/*---------------------------------------------------------
	スマホ
---------------------------------------------------------*/
@media screen and (max-width: 640px) { 
    
    .itemdata_list{
        margin: 36px 0 0;
    }
    .itemdata_list li{
        width: 47.687%;
        margin: 0 0 32px;
    }
    .itemdata_list li:nth-child(n+3){
        margin-top: 0;
    }

    .itemdata_list_ttl{
        margin: 10px 0 0;
        font-size: 15px;
    }

    /* ----------------------------------- */

    .itemdata_list_load{
        margin: 26px 0 0;
    }

    .itemdata_list_load .load_svg{}
    .itemdata_list_load .load_svg .circle1{}

    /* ----------------------------------- */
    .movie_link {
        display: flex;
        justify-content: center;
        margin: 60px 0;
    }
    /* ----------------------------------- */
    .content_popup{}
    .content_popup.view {}
    .content_popup_main{}
    .content_popup.on .content_popup_main{}
  
  
    .content_popup_inner{
        padding: 16px 3.4%;
    }
    .content_popup_bg{}

    .content_popup.on .content_popup_bg{}

    .content_popup_close{}
    .content_popup_close span{}
    .content_popup_close:before,
    .content_popup_close:after{}
    .content_popup_close:before{}

}
