@charset "utf-8";

/*-----------------------------------
タイトル
-----------------------------------*/
.page_ttl img {
    height: 5.5dvh;
}

/*-----------------------------------
リンク
-----------------------------------*/
#link_list {
    height: 100%;
    aspect-ratio: 690 / 535;
    display: flex;
    align-items: center;
    margin-left: 50px;
    margin-right: 100px;
}
#link_list ul {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
#link_list ul li {
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
}
#link_list .img {
    width: 100%;
    height: 76%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#link_list .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#link_list .txt {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    font-size: 2.5dvh;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    font-weight: bold;
    font-feature-settings: "palt";
    padding-bottom: 0.5em;
    white-space: nowrap;
}
#link_list .txt .arrow {
    width: 5dvh;
    height: 5dvh;
    background-color: #5d8351;
    border: 1px solid #5d8351;
    border-radius: 50%;
    margin: 0 3%;
    position: relative;
    transition: background .3s, color .3s;
}
#link_list .txt .arrow::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/arrow.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: background .3s, color .3s;
}
#link_list .txt:hover .arrow {
    background-color: #fff;
}
#link_list .txt:hover .arrow::after {
    background: url("../img/arrow_green.svg") no-repeat center center / contain;
}
@media screen and (max-width:768px){
    #link_list {
        aspect-ratio: 680 / 535;
        margin-left: 0;
        margin-right: 50px;
    }
    #link_list .txt {
        font-size: 2.3dvh;
    }
}

/*-----------------------------------
movie
-----------------------------------*/
#movie_list {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 150px;
}
.movie {
    height: 100%;
    display: flex;
    gap: 0 50px;
}
.movie li {
    height: 100%;
    aspect-ratio: 320 / 535;
}
.movie li .movie_cont {
    display: flex;
    justify-content: space-between;
}
.movie li .movie_cont .ttl {
    font-size: 3dvh;
    line-height: 1.4em;
    font-weight: bold;
    writing-mode: vertical-rl;
    white-space: pre;
    margin-top: 6%;
}
.movie li .movie_cont .movie_wrap {
    width: 84%;
    height: 88%;
    margin-top: 6%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
	padding-top: 149.25%;
}
.movie li .movie_cont .movie_wrap iframe {
    position: absolute;
    top: 0;
    left: -110%;
    width: 320%;
    height: 100%;
}
.movie li .movie_cont .movie_wrap .thumb {
    width: 100%;
    height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.movie li .movie_cont .movie_wrap .thumb::after {
    content: "";
    width: 24%;
    height: 24%;
    background: url("../img/movie/play_btn.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: opacity .3s;
}
.movie li .movie_cont .movie_wrap .thumb:hover::after {
    opacity: 0.7;
}
.movie li .movie_cont .movie_wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.movie li .hashtag {
    display: flex;
    justify-content: flex-end;
    margin-top: 1%;
}
.movie li .hashtag p {
    font-size: 1.8dvh;
}
.movie li .hashtag p:not(:first-child) {
    margin-left: 1em;
}
@media screen and (max-width:768px){
    #movie_list {
        margin-right: 2dvh;
    }
    .movie {
        gap: 0;
        align-items: center;
    }
    .movie li {
        width: calc(100vw - 15px);
        height: 100%;
    }
    .movie li .movie_cont {
        width: 90%;
        height: 97%;
        margin: 0 auto;
    }
    .movie li .movie_cont .ttl {
        margin-top: 0;
    }
    .movie li .movie_cont .movie_wrap {
        width: 86%;
        margin-top: 0;
        padding-top: calc(89dvh - 120px);
    }
    .movie li .hashtag {
        width: 90%;
        margin: 1% auto 0;
    }
}

