@charset "utf-8";  
/*------------------------------------------------------------ 
    CONTENTS css
------------------------------------------------------------*/  

:root {
	--base-color: #00284b;
	--accent-color: #c4d700;
	--ja: 'Noto Sans JP', "游ゴシック", "Yu Gothic", YuGothic, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	--en:'Anton', sans-serif;
}

#editor{
	font-size:16px;
	color:#333;
	line-height:1.75;
    margin-bottom: 20px;
    padding:30px 0;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
}

#editor *{
	font-size:inherit;
	line-height:inherit;
}

#editor > *{ margin-top:30px;}
#editor > *:first-child{ margin-top:0!important;}

#editor a{
	color:var(--base-color);
	text-decoration:underline;
}

#editor a:hover{ text-decoration:none;}

#editor img{
    max-width:100%;
    height:auto;
}


/*------------------------------------------------------------ 
    MediaQuery 
------------------------------------------------------------*/  

/* TABLET */
@media screen and (max-width: 834px){

}


/* SP */
@media screen and (max-width: 480px){

	#editor{
		font-size:14px;
		margin-bottom: 15px;
		padding:20px 0;
	}
	
	#editor > *{ margin-top:20px;}

}





