<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* r6_activeを持ってきて、少し手入れ */


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

/* アコーディオンの頭にアイコンをつけたい */
#r7_active .accordion&gt;dt {
    padding: .25rem 0;
    justify-content: space-between;
    border-top: 1px solid #c0c0c0;
    cursor: pointer;
    position: relative;
}
#r7_active .accordion&gt;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;
}
#r7_active .accordion&gt;dt::before, #r7_active .accordion&gt;dt::after {
    content: '';
    display: block;
    position: absolute;
    opacity: 1;
    background-color: #7d4798;
}
#r7_active .accordion&gt;dt.open::after {
    opacity: 0;
 }

@media screen and (max-width: 600px) {
    #r7_active .accordion&gt;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;
}

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

/* r7_active著者 */
.author_table_area{
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	margin-top: 1em;
}@media screen and (max-width : 600px){
	.author_table_area{
		font-size: .8rem;
		margin-top: 0;
	}
	.author_table_area dt, .author_table_area strong{
		font-size: .9rem;
	}
}
.author_table_area dl{
	display: flex;
}
.author_table_area dt, .author_table_area dd{
	padding: .5em;
	border: .5px solid #c0c0c0;
}@media screen and (min-width : 601px){
	.author_table_area dt, .author_table_area dd{
		padding: 1em;
	}
}

.author_table_area dt{
	font-weight: bold;
	background-color: #eeeeff;
}
.author_table_area strong{
	font-weight: bold;
}
.author_table_area div, .author_table_area dd.single{
	flex: 1;
/* 折り返し位置を制御する（背景色の制御のため） */
}@media screen and (max-width : 700px){
	.author_table_area div, .author_table_area dd.single{
		flex: 300px;
	}
}

.author_table_area .bg_normal dd:nth-child(2n+1), .author_table_area .bg_switch dd:nth-child(2n+1){
	background-color: #eeeeee;
}@media screen and (max-width : 700px){
    .author_table_area .bg_switch dd:nth-child(2n+1){
        background-color: #ffffff;;
    }
    .author_table_area .bg_switch dd:nth-child(2n){
        background-color: #eeeeee;
    }
}
.flex_block{
	display: flex;
	flex-wrap: wrap;
}
.flex_block.column{
	flex-direction: column;
}
</pre></body></html>