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

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main-full {
	overflow: hidden;
	padding: 40px 25px 0 25px;	/*上、右、下、左側へのボックス内の余白*/
	width: auto;		/*幅*/
	margin-bottom: 30px;
}
/*メインコンテンツのh2タグの設定*/
#main-full h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;
	padding: 12px 20px;	/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #DF7F8C;	/*メニュー上の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
}
/*メインコンテンツのh3タグの設定*/
#main-full h3 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 2px 20px;	/*上下、左右への余白*/
	border: 1px solid #dcdcdc;	/*線の幅、線種、色*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*メインコンテンツの段落タグ設定*/
#main-full p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main-full h2 + p,
#main-full h3 + p, 
#main-full h5 + p{
	margin-top: -10px;
}
#main-full h5 {
	color: #e2527a;		/*文字色*/
	font-weight: bold;
	clear: both;
	padding-right: 20px;
	padding-left: 20px;
	font-size: 18px;
	padding-top: 15px;
}

#main-full p img {
	width: auto;
	margin-right: 8px;
	margin-bottom: 8px;
	height: 300px;
}

iframe {
	width:480px;}

h6{
	padding: 0px 20px 0;
	font-size:110%;
	margin-top:20px;}
h6 + p{
	margin-top: -15px;
	margin-bottom:-10px;}


@media screen and (max-width:600px){
#main-full p img,iframe {
	height:auto;
	width:100%;
	margin-right:0;
}
}</pre></body></html>