@charset "utf-8";

/* 公開予定 */
.table_box .disable{
	pointer-events: none;
	opacity: .5;
	background-color: #ddd;
}



/* 高専WEB Contentsのスタイルを移植。整理したらmedia query不要だった */
.tabPanel .txt {
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* アコーディオンの頭にアイコンをつけたい */
#r6_active .accordion>dt {
    padding: .25rem 0;
    justify-content: space-between;
    border-top: 1px solid #c0c0c0;
    cursor: pointer;
    position: relative;
}
#r6_active .accordion>dt .txt {
    font-size: 1.25rem;
	line-height: 3;
    font-weight: 700;
    max-width: -webkit-calc(100% - 2rem);
    max-width: calc(100% - 2rem);
}
 
.with_icon img{
	width: 3.75rem;
	margin-right: .5rem;
}
#r6_active .accordion>dt::before, #r6_active .accordion>dt::after {
    content: '';
    display: block;
    position: absolute;
    opacity: 1;
    background-color: #7d4798;
}
#r6_active .accordion>dt.open::after {
    opacity: 0;
 }

@media screen and (max-width: 600px) {
    #r6_active .accordion>dt .txt {
        line-height: 2;
    }
    .with_icon img{
        width: 2.5rem;
        margin-right: .25rem;
	}
}

/* 技能動画集 */
.movie_list h4{
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: bold;
	margin: 0 0 1em .5em;
}
.movie_list h4::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	background-image: url("../SVG/icon_web.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.movie_list h4::after{
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 1em;
	height: 1em;
	margin-left: .25em;
	margin-right: .25em;
	background-image: url("../SVG/icon_outside.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.nombre{
	font-weight: normal;
	margin-right: .25em;
}
.movie_list ul{
	display:flex;
	gap: 1.25em;
	flex-wrap: wrap;
	justify-content:left;
	margin: 0 0 1.25em 1em;
}
.movie_list li a{
	display: flex;	/* なぜかこれを入れないとアイコンと天地が揃わない */
	font-size: 1rem;
	line-height: 1.5;
	padding: 0;
}
.movie_list li a::before{
	content: "";
	display: inline-block;
	vertical-align: middle;;
	width: 1.5rem;
	height: 1.5rem;
	margin-right: .25em;
	background-image: url("../SVG/icon_movie.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

#r6_active .movie_list hr{
	width: 98%;
	margin-bottom:1em;
    border: none;
    border-top: 2px dotted #7d4798;
}