@charset "UTF-8";
/* CSS Document */

/*-----------------------------------
	
   スマホ版

-----------------------------------*/
/*-----View moreボタン-----*/

/* 学務ポータルセクション */
.btn-area {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* ポータルボタン：押しやすく目立つデザイン */
.back-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: #DFFF4F;
    color: #333;
    text-decoration: none;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 0 #335d91;
    transition: all 0.2s;
}

.back-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #335d91;
}

/* 動画セクション */
.movie-section {
    padding: 40px 20px;
}

.movie-title {
    font-size: 1.4rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* 動画を並べるエリア */
.movie-set {
    display: flex;
    flex-direction: column; /* スマホは縦並び */
    gap: 30px;
}

/* ★重要：YouTubeを16:9でレスポンシブにする魔法 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 の比率 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


@media (min-width: 900px){
	
	
	
	
    /*-----View moreボタン-----*/
	.view-more-wrappers{
		bottom: 40px;
		padding: 10px 70px;
        color: #000;
	}
	
	.view-more-btn:hover{
		background-color: #d4f045;
		transform: translateX(5px);
	}

    .movie-set {
        flex-direction: row;
        max-width: 1000px;
        margin: 0 auto;
    }

    .movie-item {
        flex: 1;
    }

    .back-btn {
        font-size: 1.2rem;
        padding: 25px;
    }

    .back-btn:hover {
        background-color: #528cd1;
        transform: translateY(-2px);
        box-shadow: 0 6px 0 #335d91;
    }
}