/* movie
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */
ul.movie-list {
    padding: 0;
    margin: 0;
    border: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 25px;
    width: 100%;
}
ul.movie-list2 {
    padding: 0;
    margin: 0;
    border: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 50px;
    width: 100%;
}

ul.movie-list li {
    width: 30%;
}
ul.movie-list2 li {
    width: 30%;
}
ul.movie-list- li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

ul.movie-list- li a:hover {
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
    transform: translateY(-4px);
    text-decoration: none;
}

ul.movie-list- li a:hover:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0, 0, 0, 0.4);
}
ul.movie-list- li a:hover:after {
    content: "";
    width: 15%;
    height: 15%;
    display: inline;
    background-image: url(./img/icon_movie.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    color: #fff;
}
ul.movie-list- li a img {
    border-radius: 2px 2px 0 0;
}
ul.movie-list- li a p {
    margin: 0;
    text-decoration: none;
    color: #313131;
    padding: 10px 20px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    ul.movie-list {
        flex-direction: column;
    }
    ul.movie-list li {
        width: 100%;
    }
}

/* modal */
.ed-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    z-index: 9999;
}

div#modalOverlay {
    width: 100%;
    height: 100%;
    display: flex;
    cursor: pointer;
}

.ed-closeModal {
    position: absolute;
    top: -35px;
    right: 5px;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.5;
}
.ed-closeModal::before,
.ed-closeModal::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    transform: rotate(45deg);
    transform-origin: top left;
}

.ed-closeModal::before {
    left: 0;
}

.ed-closeModal::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: top right;
}

.modalContent {
    width: 100%;
    max-width: 800px;
    margin: auto;
    position: relative;
}

.video {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    filter: drop-shadow(0px 2px 5px #313131);
    animation: fadeIn 1.2s ease 0s 1 normal;
}
.video iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.localvideo {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    /* （ここにモバイル用スタイルを記述） */
    ul.feature_movie-list li {
        width: 100%;
    }
}

/* category
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */
.category_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-left: 0;
}

.category_list li {
    width: calc(33% - 20px);
    position: relative;
}
.category_list li a,
.category_list li a img {
    width: 100%;
    height: auto;
    text-decoration: none;
}
.category_list li span {
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 115%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.category_list li span:first-of-type {
    font-size: 2.5rem;
    text-shadow: #000 0.5px 0.5px 5px;
    top: 50%;
}

.category_list li span:last-of-type {
    padding: 4% 5%;
    bottom: 5%;
    transform: translateX(-50%);
}

@media screen and (max-width: 992px) {
    .category_list li span:first-of-type {
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .category_list li {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 576px) {
    .category_list li span:first-of-type {
        font-size: 1.5rem;
    }
    .category_list li span:last-of-type {
        font-size: 10px;
    }

}
@media screen and (max-width: 400px) {
    .category_list li span:first-of-type {
        font-size: 1.3rem;
    }

    .category_list li span:last-of-type {
        font-size: 10px;
        bottom: 0;
    }
}

/* catalog
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */

.catalog_btn {
    background-color: #f8cbad;
    text-align: center;
    padding: 10px 20px;
}

.catalog_btn:hover {
    filter: opacity(75%);
}

.catalog_btn a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 1.3rem;
    display: block;
}

.catalog_btn a:hover {
    color: #000;
}

.catalog_right {
    display: flex;
    align-items: center;
    width: 100%;
}
.catalog_right div {
    color: red;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    flex-grow: 1;
}

@media screen and (max-width: 767px) {
    .category_list li {
        width: calc(50% - 20px);
    }

    .catalog_right {
        margin-top: 10%;
    }
}
