﻿/* CSS layout */

/*サイトトップの画像*/
#masthead {
	clear: both;
	margin-top: 30px;
	margin-bottom: 10px;
	width: calc(100vw - 20px);
	max-width: 1366px;
	height: 10vw;
	max-height: 133px;
	min-height: 75px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}
@media (max-width: 1000px) and (min-width:679px) {
	#masthead {
	margin-top: 130px;
	margin-bottom: 20px;
	}
}
@media (min-width: 465px) and (max-width: 678.9px){
	#masthead {
	margin-top: 130px;
	margin-bottom: 20px;
	}
}
@media (max-width: 464.9px) {
	#masthead {
	margin-top: 220px;
	margin-bottom: 20px;
	}
}

.midashi {
    margin: 80px 1em 0 0;
	font-size: 49px;
	font-size:clamp(22px, 5.1vw, 54px);;
	color: #ff0;
    font-family: 'M PLUS 1p', sans-serif,G2サンセリフ-B;
    font-weight:bold;
	-webkit-text-stroke-color: #000; /* 文字の縁取り */
	-webkit-text-stroke-width: 1px;
	text-shadow: 8px 6px 5px #333; /* 文字の影 */
	position: relative;
	top: 20%;
	left:0.5em;
}

p.midashi {
	font-size: 17px;
	font-size:clamp(16px, 3.8vw, 22px);;
	color: #ff0;
    font-family: 'M PLUS 1p', sans-serif,G2サンセリフ-B;
    font-weight:bold;
	-webkit-text-stroke-color: #000; /* 文字の縁取り */
	-webkit-text-stroke-width: 1.0px;
	text-shadow: 8px 6px 5px #333; /* 文字の影 */
	position: relative;
	top: 0.5rem;
	left:0.5em;
}
@media (max-width:800px) { /* 狭い画面では小見出を非表示にする。 */
	#narrow-erase,p.midashi { 
		display: none; 
	}
}

p.midashi + h1.midashi {
    margin-top: 0px;
	font-size:40px;
	font-size:clamp(21px, 4.4vw, 45px);;
	color: #ff0;
    font-family: 'M PLUS 1p', sans-serif,G2サンセリフ-B;
    font-weight:bold;
	-webkit-text-stroke-color: #000; /* 文字の縁取り */
	-webkit-text-stroke-width: 1px;
	text-shadow: 8px 6px 5px #333; /* 文字の影 */
	position: relative;
	top: 0.9rem;
	left:1em;
}

/*containerは中央の２列全体を規定*/

@media (min-width:850px){
	.display-box {
	display: -webkit-flex;
	display: flex;
	}
	.display-box{
	flex-direction: row;
	flex-wrap:wrap;
	}
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
}
@media (max-width: 849px){
	.display-box {
	display: -webkit-flex;
	display: flex;
	}
	.display-box{
	flex-direction: row;
	flex-wrap:wrap;
	}
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
}

#container {
	width: calc(100vw - 20px);
	max-width: 1366px;
	margin-top:20px;
	margin-bottom:5px;
}
@media all and (max-width: 400px) {
	#container {
		width:calc(100vw - 10px);
	}
}


/*right_colは右側の列を規定*/

#right_col {
	display: block;
	width: 300px;
	height: min-content;
}
@media (max-width: 849px) {
	#right_col {
		float: none;
		margin: 30px 20px 0 5px;
		width:calc(100% - 30px);
	}
}
.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
}

.sample-box-right {
	margin-top: 10px;
	padding: 0 5px 0px 5px;
	/*border: 2px solid #da4033;
	border-radius: 4px;*/
	position: relative;
}
.sample-box-right-img{
	vertical-align: middle;
	border: 1px solid #0f0;
}
.sample-box-right-img:hover{
	opacity: 0.5;
}
/*.sample-box-right::before {
	background-color: #dddddd;
	color: #da4033;
	content: "外部リンク／サイト内検索";
	font-weight: bold;
	left: 1em;
	padding: 0.2em;
	position: absolute;
	top: -1em;
}*/

.banner-right {
	margin-top: 15px;
	margin-bottom: 10px;
	text-align: left;
}

time.topic-date {
	margin-top: 10px;  /* 段落間のスペースを指定 */
    margin-left: 1rem;
	font-weight: bold;
	color: #FF0000;
}

/* 左側（メイン）の枠 */

@media (min-width: 850px) {
    #page_content {
        display: block;
        float: left;
        width:calc(100% - 370px);
        margin: 0px 20px 0px 20px;
        padding: 5px;
        text-align: left;
		background-color: #ffffff;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }
}
@media (max-width: 849.9px) {
	#page_content {
		float: none;
		width:calc(100% - 20px);
		max-width: 840px;
        margin: 0px 10px 0px 10px;
        padding: 5px;
		background-color: #ffffff;
	}
}
/*.content1 {
}*/

/*ページトップへ移動するボタンを表示*/

#page-top1{
	display: block;
	z-index: 9999;
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height:50px;
	border-radius:50px;
	padding: 15px 5px 0px 5px;
	background: #59d;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
    text-decoration: none;
	text-shadow: -1px -1px 1px rgba(0,0,0,0.3);
	box-shadow: inset 2px 2px 8px rgba(255,255,255,0.5),inset -2px -2px 8px rgba(0,0,0,0.2);
	transition: background-color 0.3s,color 0.3s;
	filter:alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}
@media (max-width: 850px) {
    #page-top1 {
        bottom: 0px;
        right: 0px;
        width: 20px;
        height:80px;
        border-radius:10px 0 0 10px;
        padding: 10px 5px 0px 5px;
        }
}

#page-top1:hover{
	background: #099;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	filter:alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
    transform: rotatey(360deg);  /* 回転 */
    transition: 0.3s;             /* 0.3秒かけて動く */
}

/*これは水平線の規定*/

.horizontal {
	border:0;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #fff;
	width: 100%;
	margin: 2px 0px 2px 0px;
	float:left;
}

.horizontal2 {
	margin: 20px 0px 0px 10px;
	height: 4px; 
	width: auto;
}
section.anchor .horizontal {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* 以下SNSボタンについて横並びにするための規定*/

.social {
	width:100%;
	margin: 15px 0 0 15px;
	padding: 5px 0 5px 0;
}

.social_inner {
	position: relative;
	left: 0%;
	float: left;
}

.facebook,
.twitter,
.hatebu,
.LINE {
	position: relative;
	left: 0%;
	float: left;
	margin: 1rem 10px 0px 0;
}

.facebook {width: 170px;height: 30px;padding-left: 0px;}
.fb_iframe_widget > span {vertical-align: baseline !important;}
.twitter {width: 84px;padding-left: 5px;height: 30px;}
.hatebu {width: 123px;padding-left: 12px;height: 30px;}
.LINE  {width: 75px;padding-left: 5px;}

/* 中断トップの枠 */

div.sample-box-top {
	border: 2px ridge #da4033;
	border-radius: 4px;
	margin: 1.5em 0em 0em 0em;
	padding: 1em 1em 0.5em 0em;
	position: relative;
}
div.sample-box-top::before {
    background-color: #ffffff;
    color: #da4033;
    content: "このページのポイント";
    font-weight: bold;
    left: 1em;
    padding: 0.2em;
    position: absolute;
    top: -1em;
}

.illustration-setumeiwakunai {
    float: right;
    height: 150px;
    margin-left: 1rem;
}
@media (max-width: 350px) {
	.illustration-setumeiwakunai {
		width: 90%;
		height: auto;
        margin-bottom: 10px;
	}
}

.illustration-ppt {
    float: left;
    height: 300px;
    margin: 1rem 0 1rem 4rem;
}

/* 図を規定する */
div.picbox {
    display: block;
    float: left;
    margin: 1rem 0 15px 4rem;
}

.illustration-ppt {
    float: left;
    height: 300px;
    margin-bottom: 5px;
}

div.picbox-gen {
    display: block;
    clear: right;
    float: right;
    margin: 0 0 15px 2rem;
}
div.picbox-genl {
    display: block;
    float: left;
    margin: 1rem 15px 15px 0rem;
	box-shadow: 2px 2px 4px gray;
}

.illustration-gen {
    float: left;
    height: 120px;
    margin-bottom: 5px;
}
.illustration-genv {
    float: left;
    width:100%;
    margin-bottom: 5px;
	box-shadow: 2px 2px 4px gray;
}
@media (min-width:400px) and (max-width:1200px) {
    .illustration-genv {
        height:180px;
        width:none;
    }
}
@media (min-width:1200.5px) {
    .illustration-genv {
        width: 340px;
        height: auto;
    }
}
span.phot-setumeiwakunai {
    float: right;
	width: 90%;
	height: auto;
	margin-bottom: 10px;
}
@media (min-width: 390px) and (max-width: 1200px) {
	span.phot-setumeiwakunai {
		width: 210px;
		margin-left: 1rem;
	}
}
@media (min-width: 1200.5px) {
	span.phot-setumeiwakunai {
		width: 340px;
		margin-left: 1rem;
	}
}
img.phot-setumeiwakunai {
	width:100%;
	height:auto;
}

p.piczoom{/* 拡大しますの表示 */
	margin: 5px 0px 5px 0px;
	text-align: right;
    text-decoration: none;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

#popup-background{
    position:fixed;     /* 位置の固定 */
    top: 0;             /* 表示位置 */
    left: 0;            /* 表示位置 */
    height: 100%;       /* 画面全体に表示 */
    width: 100%;        /* 画面全体に表示 */
    background:#000;    /* 背景色 */
    opacity: 0.60;      /* 透明度 */
    margin: 0;          /* 余白の削除 */
    padding: 0;         /* 余白の削除 */
    z-index:1000;       /* 要素のz座標 */
}
#popup-item{
    position:fixed;     /* 位置の固定 */
    top: 50%;           /* 表示位置(真ん中に表示) */
    left: 50%;          /* 表示位置(真ん中に表示) */
    margin: 0;          /* 余白の削除 */
    padding: 0;         /* 余白の削除 */
    z-index:1001;       /* 要素のz座標 */
}

/*中断トップの内容を規定*/
p.sample-box-top{
	list-style: none;
	background: url(../img/point027_04.png) 0 0.5rem no-repeat;/* 行頭のポイント */
	margin: 10px 0px 0px 10px;
	padding: 0px 0px 0px 1em;
	line-height:1.7rem;
	text-indent: 0em;
	text-align: justify;
	font-size: medium;
	font-family: Century;
	text-align: left;
}
@media (max-width: 350px) {
	p.sample-box-top {
		clear: both;
	}
}

/* 目次 */

ul.mokuji {
	margin-bottom: 10px;
	border: solid 2px #ffb03f;
	padding: 0.5em;
	position: relative;
	margin-top: 2em;
}
ul.mokuji-s {
	margin-left: 2em;
}

ul li.mokuji-0 {
	list-style: none;
	background: url(../img/point022_01.png) 0.5rem 0.5rem no-repeat;/* 行頭のポイント */
	margin: 15px 0px 0px 10px;
	padding: 0px 0px 0px 3rem;
	line-height:1.5rem;
	text-indent: -1em;
	text-align: justify;
	font-size: medium;
	font-family: Century;
	text-align: left;
}
ul li.mokuji-0:after {
  /*タイトルタブ*/
  background: #ffb03f;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -2px;
  bottom: 100%;
  margin-bottom: 24px;
  padding: 1px 5px 1px 35px;
  content: "目次";/*タブの文字*/
  letter-spacing: 1.05em;/*字間*/
}
ul li.mokuji-1 {
	list-style: none;
	background: url(../img/point022_01.png) 0.5rem 0.5rem no-repeat;/* 行頭のポイント */
	margin: 15px 0px 0px 10px;
	padding: 0px 0px 0px 3rem;
	line-height:1.5rem;
	text-indent: -1em;
	text-align: justify;
	font-size: medium;
	font-family: Century;
	text-align: left;
}
ul li.mokuji-2 {
	list-style: none;
	background: url(../img/point022_04.png) 1.5rem 0.5rem no-repeat;/* 行頭のポイント */
	margin: 5px 0px 0px 10px;
	padding: 0px 0px 0px 5rem;
	line-height:1.5rem;
	text-indent: -2rem;
	text-align: justify;
	font-size: medium;
	font-family: Century;
	text-align: left;
}
ul li.mokuji-3 {
	list-style: none;
	background: url(../img/point026_07.png) 2.5rem 0.5rem no-repeat;/* 行頭のポイント */
	margin: 5px 0px 0px 10px;
	padding: 0px 0px 0px 6rem;
	line-height:1.5rem;
	text-indent: -2rem;
	text-align: justify;
	font-size: medium;
	font-family: Century;
	text-align: left;
}
@media (min-width: 1200.5px) {
	ul li.mokuji-1,ul li.mokuji-2,ul li.mokuji-3 {
		font-size: 17px;
	}
}

/*ボックスの枠囲い*/

.box-waku {
	border: 2px ridge #da4033;
	border-radius: 4px;
	margin: 1.5em 0em 2em 0em;
	padding: 0em 1em 1em 0em;
	position: relative;
}
.box-waku::before {
    background-color: #dddddd;
    color: #da4033;
    font-weight: bold;
    left: 1em;
    padding: 0.2em;
    position: absolute;
    top: -1em;
}
.box-waku-2 {
	border: 2px ridge #da4033;
	border-radius: 4px;
	margin: 1.5em 0em 2em 0em;
	padding: 0em 1em 1em 0em;
	position: relative;
}

/*見出しｈ2*/

.midashi-style2 {
    clear: both;
	text-align: left;
	line-height: 30px;
	margin: 10px 0px 0px 0px;
	padding: 10px 10px 10px 65px;
	font-family: Century;
	font-size:large;
	color:#4a1086;
	background:  url(../img/GreenCloss_mini.png) 0.7em 0.7em no-repeat, -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background:  url(../img/GreenCloss_mini.png) 0.7em 0.7em no-repeat, linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	border: 1px solid #ccc;
	border-top: 4px solid #1c66fe;
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
}

/*見出しｈ3*/

.midashi-style3 {
    clear: both;
	width: auto;
	margin: 20px 5px 5px 10px; 
    padding-left: 4em;
	text-indent: -3em;
	font-size: 20px;
    font-weight: 600;
    color: #800000;
	line-height: 1.6;
	text-align: left;
}

/*見出しｈ4*/

.midashi-style4 {
	width: auto; 
	margin: 40px 5px 5px 10px; 
    padding:0 0 0 4em;
	text-indent: -1em;
	font-size: large;
    font-weight: 600;
    color: #800000;
	line-height: 1.6;
	text-align: left;
}
.midashi-style3 + .midashi-style4 {
	margin-top: 15px;
}

/*見出しh5 */

.midashi-style5 {
	width: auto; 
	margin: 40px 5px 5px 10px; 
    padding:0 0 0 6em;
	text-indent: -2em;
	font-size: medium;
    font-weight: 600;
    color: #800000;
	line-height: 1.6;
	text-align: left;
}
.midashi-style4 + .midashi-style5 {
	margin-top: 15px;
}

/*見出しh6 */

.midashi-style6 {
	width: auto; 
	margin: 40px 5px 5px 10px; 
    padding:0 0 0 6em;
	text-indent: -2em;
	font-size: medium;
    font-weight: 600;
    color: #800000;
	line-height: 1.6;
	text-align: left;
}
.midashi-style5 + .midashi-style6 {
	margin-top: 15px;
}

p.date{
	margin: 20px 5px 10px 0;
	text-align: right;
	font-size: medium;
    color: #009800;
	width: auto;
	clear: both;
}
/*以下で中央部の一般的なpタグを規定*/

p.end {/* 新たに、図と文章の行を改めたいとき　空白の行に指定する */
    clear: both;
}

p.Normal{
	margin-top: 20px;
	margin-left: 1em;
    padding-left: 2em;
	text-indent: 0em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
p.Normal-second{/* 通常の文字下げなし */
	margin-top: 20px;
	margin-left: 1em;
    padding-left: 2em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7;
	width: auto;
	clear: both;
}
p.Normal-2{/* 前に行を開けたいとき */
	margin-top: 1rem;
	margin-left: 1rem;
    padding-left: 2rem;
	text-indent: 0rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7;
	width: auto;
	clear: both;
}
p.Normal-rot{/* 通常の文 図への回り込み許可 */
	margin-top: 20px;
	margin-left: 1em;
    padding-left: 2em;
	text-indent: 0em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7;
	width: auto;
}
@media (max-width: 500px) {
	p.Normal,p.Normal-second,p.Normal-2,p.Normal-rot {/* 通常のコメント */
		padding-left: 0em;
	}
}
@media (max-width: 350px) {
	p.Normal,p.Normal-second,p.Normal-2,p.Normal-rot {/* 通常のコメント */
		clear: both;
	}
}

p.Normal-n{/* 箇条書き（次下げ幅大） */
	margin-top: 15px;
	margin-left: 1em;
    padding-left: 7em;
	text-indent: -1em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

p.Normal-n2{/* 箇条書き（次下げ幅小） */
	margin-top: 15px;
	margin-left: 1em;
    padding-left: 4em;
	text-indent: -1em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

p.Normal-nt{/* 箇条書き（表の中） */
	margin-top: 0px;
	margin-left: 0em;
    padding-left: 1em;
	text-indent: -1em;
	text-align: justify;
	font-size: medium;
	line-height: 1.4; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

p.Normal-list{
	list-style: none;
	background: url(../img/point049_01.gif) 2rem 0.5rem no-repeat;/* 行頭のポイント */
	margin-top: 12px;
	margin-left: 1em;
    padding-left: 3em;
	text-indent: 1em;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
@media (min-width: 1200.5px) {
	p.Normal,p.Normal-second,p.Normal-2,p.Normal-rot,p.sample-box-top,p.Normal-list,li.mokuji-1 {/* 通常のコメント */
		font-size: 17px;
		margin-right: 1rem;
	}
}

p.Comment{
	margin-top: 15px;
	margin-left: 1em;
    padding-left: 8em;
	text-indent: -2em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

p.Comment-para2{
	margin-top: 5px;
	margin-left: 1em;
    padding-left: 8em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
p.Comment-norot{
	margin-top: 15px;
	margin-left: 1em;
    padding-left: 8em;
	text-indent: -2em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
}
@media (max-width:400px) {
	p.Comment-norot {/* 通常のコメント */
	clear: right;
	}
}

p.Comment-para2-norot{
	margin-top: 5px;
	margin-left: 1em;
    padding-left: 8em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
}
@media (max-width: 500px) {
	p.Comment{/* 通常のコメント */
		padding-left: 2em;
	}
	p.Comment-para2 {/* 通常のコメント */
		padding-left: 2em;
	}
	p.Comment-s{/* 通常のコメント */
		padding-left: 2em;
	}
	p.Comment-s-para2 {/* 通常のコメント */
		padding-left: 2em;
	}
	p.Comment-norot{/* 通常のコメント */
		padding-left: 2em;
	}
	p.Comment-para2-norot{/* 通常のコメント２行目 */
		padding-left: 2em;
	}
}
@media (min-width: 1200.5px) {
	p.Comment,p.Comment-para2,p.Comment-s,p.Comment-s-para2,p.Comment-norot,p.Comment-para2-norot {/* 通常のコメント */
		margin-left: auto;
		margin-right: 1rem;
		width:75%;
		max-width:350rem;
		font-size: 15px;
	}
}

p.document-2{/* 資料出所の表示 */
	margin: 5px 0px 5px 10%;
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
    text-decoration: none;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
p.document-2r{/* 資料出所の表示 */
	margin: 5px 0px 5px 10%;
	padding-left: 1em;
	text-indent: -1em;
	text-align: right;
    text-decoration: none;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

/*以下で中央部の一般的なpタグを規定*/

div.MsoNormal{
	margin: 10px 0 1em 2em;
	text-align: justify;
/*	text-justify: inter-ideograph;*/
	width: auto;
	border: 0.5px solid #c92ad2;
	border-radius: 3px;
	box-shadow: inset 4px 4px 8px rgba(255,255,255,0.5),inset -4px -4px 8px rgba(0,0,0,0.2);
}
img.top-small {
	z-index: 1;
	position: relative;
	float: left;
	width:100%;
	margin-right: 1rem;
	border-radius: 3px;
}
@media (min-width:450px) {
	img.top-small {
		width:170px;
	}
}
a.top-small {
	position: relative;
	text-decoration: none;
}
.samplu-box-gyou{
	display: block;
	color: #000;
	margin-top: 5px;
	margin-left: 1em;
	padding: 5px 10px;
	font-size: 15px;
	line-height: 1.6rem;  /* 行間のスペースを指定 */
	position: relative;
	width: auto;
}
@media (min-width:450px) {
	.samplu-box-gyou {
		margin-top: 0;
		clear: none;
	}
}
.samplu-box-title{
	display: block;
	color: #00f;
	margin-top: 30px;
	margin-left: 1em;
	padding: 5px 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6rem;  /* 行間のスペースを指定 */
	position: relative;
	width: auto;
}
@media (min-width:450px) {
	.samplu-box-title {
		margin-top: 0;
		clear: none;
	}
}
p.oshirase {/* 関連コンテンツ*/
	margin-top: 30px;  /* 段落間のスペースを指定 */
	margin-left: 10px;
	font-weight: bold;
	color: #da4033;
	text-shadow:#fff -1px -1px 1px,#333 1px 1px 1px;
}

b {/* 強調文字 */
    font-weight: bold;
}

sup {/* 上付き文字 */
font-size: 75.5%;
vertical-align: top;
position: relative;
top: -0.1em;
}
sub {/* 下付き文字 */
font-size: 75.5%;
vertical-align: bottom;
position: relative;
top: 0.1em;
}

b.red {
    color: #ff0000;
    font-weight: 300;
}

/*浮き上がりリンク */

a.column-link {
	display: block;
	position:relative;
	margin: 10pt 0pt 1.5rem 5rem;
	padding: 5px 5px 5px 1em;
	background: url(../img/point049_01.gif) 0.5em 0.7em no-repeat;/* 行頭のポイント */
	line-height: 1.6; /* 行間のスペースを指定 */
	text-indent: 1em;
	text-align: left;
	font-size: medium;
	font-family: Century;
    text-decoration: none;
	border-style: solid ;
	border-width: 2px;
	border-radius: 10px;
	border-color: #0000ff;
    background-color: #d7eeff;
	width: auto; 
}
a.column-link:hover {
	top: -5px;
	right: 5px;
	box-shadow: 5px 5px 5px #999;
}


/* 前後の問題への異動ボタン */
.move {
    display: block;
    width: auto;
    margin: 20px auto 0;
    clear: both;
}

.Bmove {
    position: relative;
    display: block;
    float: left;
    margin: 1rem 0 1.5rem 0.5rem;
    padding: 1em 1em;
    text-decoration: none;
    color: #FFF;
    background: #008000;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #006400;/*線色*/
}
.Bmove:hover {
    background: #33dd33;
}
.Bmove:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.Bmove-recent {
    position: relative;
    display: block;
    float: left;
    margin: 1rem 0 1.5rem 0.5rem;
    padding: 1em 1em;
    text-decoration: none;
    color: #FFF;
    background: #808080;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #646464;/*線色*/
}

.BNmove {
    position: relative;
    display: block;
    float: left;
    margin: 1rem 1rem 1.5rem 1rem;
    padding: 1em 1.5em;
    text-decoration: none;
    color: #FFF;
    background: #008000;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #006400;/*線色*/
}
.BNmove:hover {
    background: #33dd33;
}
.BNmove:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}


.BNmove-stop {
    position: relative;
    display: block;
    float: left;
    margin: 1rem 1rem 1.5rem 1rem;
    padding: 1em 1.5em;
    text-decoration: none;
    color: #FFF;
    background: #808080;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #646464;/*線色*/
}

/* 以下で解説中の表を規定 */
.Commentary-table {
    border: 2px #00f solid;
    margin: 1rem 0 0 3rem;
    table-layout: fixed;
    background: #fafafa;
}
.Choices-title2 + .Commentary-table {
    margin: 0 0 0 3rem;
}
.Commentary-table + p.Comm-p {
    margin-top: 1rem;
}
caption.table-title {
    margin: 0 0 5px 2rem;
	padding-left: 2rem;
	text-indent: -2rem;
	line-height: 1.3rem;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}
caption.table1 {
    margin: 0 0 5px 5rem;
    text-align: left;
    text-indent: -3.5rem;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5rem;
}
.Commentary-table-th {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
}
.Commentary-table-th2 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
}
.Commentary-table-th3 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-th4 {
    border: 1px #000 solid;
    border-right: 2px #00f solid;;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-th4g { /* バックに淡いグリーン*/
    border: 1px #000 solid;
    border-right: 2px #00f solid;;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
    background: #E2F0D9;
}
.Commentary-table-th4c {
    border: 1px #000 solid;
    border-right: 2px #00f solid;;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-th4cd {
    border: 1px #000 solid;
    border-right: 2px #00f solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-th4dlc {
    border: 1px #000 solid;
    border-right: 2px #00f solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-th4d {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-th4dl {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-th5 {
    border: 1px #000 solid;
    border-right: 2px #00f solid;;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-th5c {
    border: 1px #000 solid;
    border-right: 2px #00f solid;;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-th-c {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    background: #ebf6f7;
}
.Commentary-table-th-c2 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    background: #ebf6f7;
}
.Commentary-table-th-c3 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c3b {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c3bl {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c4 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    border-right:  2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c5 {
    border: 1px #000 solid;
    border-right:  2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: left;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c5c {
    border: 1px #000 solid;
    border-right:  2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
    background: #ebf6f7;
}
.Commentary-table-th-c6 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    text-align: left;
    vertical-align: middle;
    background: #ebf6f7;
}
.vertical { /* 縦書き用 幅を１文字分にする*/
  writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  letter-spacing: .2em;
}
.Commentary-table-th-v { /* 縦書き用 幅を１文字分にする*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    writing-mode: vertical-rl;
    text-align: center;
}
.Commentary-table-th-v2 {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    writing-mode: vertical-rl;
    text-align: left;
}
.Commentary-table-th-vs {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    line-height: 1.5rem;
    writing-mode: vertical-rl;
    text-align: center;
}
.Commentary-table-th2v { /* 疑似的な縦書き用 幅を１文字分にする*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 10px 0.5rem;
    line-height: 1.2rem;
    text-align: center;
}
.Commentary-table-th2v2lf { /* 疑似的な縦書き２行用（左側） 幅を１文字分にする*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    border-right: hidden;
    padding: 10px 0.1rem 10px 0.4rem;
    line-height: 1.2rem;
    text-align: center;
}
.Commentary-table-th2v2ls { /* 疑似的な縦書き２行用（右側） 幅を１文字分にする*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 10px 0.4rem 10px 0.1rem;
    line-height: 1.2rem;
    text-align: center;
}
.Commentary-table-th2vv { /* 疑似的な縦書き用 幅を１文字分にする*/
    border: 1px #000 solid;
    padding: 5px 1.0rem;
    line-height: 1.2rem;
    text-align: center;
}
.Commentary-table-th2vv2lf { /* 疑似的な縦書き２行用（左側） 幅を１文字分にする*/
    border: 1px #000 solid;
    border-right: hidden;
    padding: 5px 0.1rem 5px 0.4rem;
    line-height: 1.2rem;
    text-align: center;
}
.Commentary-table-th2vv2ls { /* 疑似的な縦書き２行用（右側） 幅を１文字分にする*/
    border: 1px #000 solid;
    border-left: hidden;
    padding: 5px 0.4rem 5px 0.1rem;
    line-height: 1.2rem;
    text-align: center;
}

.Commentary-table-ths { /*統計用上枠*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.1rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: center;
    background: #ebf6f7;
}
.Commentary-table-thslu { /*統計用左上枠*/
    border: 1px #000 solid;
    border-right: 2px #00f solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.1rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: center;
    background: #ebf6f7;
}
.Commentary-table-thsl { /*統計用左枠*/
    border: 1px #000 solid;
    border-right: 2px #00f solid;
    padding: 5px 0.1rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: left;
    background: #ebf6f7;
}
.Commentary-table-thslr { /*統計用左枠（太線なし）*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: left;
    background: #ebf6f7;
}
.Commentary-table-thsle { /*統計用左枠（太線なし）*/
    border: 1px #000 solid;
    border-left: 2px #00f solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.1rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: center;
    background: #ebf6f7;
}
.Commentary-table-td1 {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
}
.Commentary-table-td1rb {
    border: 1px #000 solid;
    border-right: 2px #00f solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
}
.Commentary-table-td2 {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: center;
}
.Commentary-table-td2c {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
    border-bottom: 2px #00f solid;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: center;
}
.Commentary-table-td3 {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-td3d {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-td4 {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-td4d {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-td4dr {
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    border-right: 2px #00f solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    vertical-align: middle;
}
.Commentary-table-td5 {
    border: 1px #000 solid;
    padding: 5px 0.5rem;
	text-indent: 0rem;
    line-height: 1.5rem;
	text-align: right;
    vertical-align: middle;
}
.Commentary-table-tds { /*統計用*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: right;
}
.Commentary-table-tdsl { /*統計用*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    vertical-align: middle;
    text-align: left;
}
.Commentary-table-tdsv { /*統計用*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: right;
    vertical-align: middle;
}
.Commentary-table-tdsb { /*統計用*/
    border: 1px #000 solid;
    border-bottom: 2px #00f solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: right;
}
.Commentary-table-tdsr { /*統計用*/
    border: 1px #000 solid;
    border-left: 2px #00f solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: right;
}
.Commentary-table-tdsm { /*統計用*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.Commentary-table-tdsg { /*統計用バックに淡いグリーン*/
    border: 1px #000 solid;
    padding: 5px 0.1rem;
	text-indent: 0rem;
    line-height: 1.5rem;
    text-align: right;
    background: #E2F0D9;
}
.Commentary-table + .inbox {
    margin-top: 1rem;
}
thead.statistics {/*統計用*/
    font-size: small;
}
tbody.statistics {/*統計用*/
    font-size: small;
}
p.table-note { /* 式への注釈 */
    margin-top: 0.2rem;
    padding-left: 3rem;
	text-indent: -2rem;
	text-align: justify;
	font-size: medium;
    font-weight: 550;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.table-n { /* 式への注釈 */
    margin-top: 0.2rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.table-n3 { /* 式への注釈 */
    padding-left: 1rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}

/* 箇条書きのボックス */

span.note1 { /* 箇条書きのボックス */
    display: block;
    border: ridge #55aaff ;
    margin: 1rem 0 1rem 3rem;
    padding: 5px 5px 5px 10px;
    background: #fff;
}
span.note-in { /* 箇条書きのボックス */
    display: block;
    border: ridge #8255ff ;
    margin: 1rem 0.5rem 1rem 2rem;
    padding: 5px 5px 5px 10px;
    background: #fff;
}
span.note-inw { /* 箇条書きのボックス */
    display: block;
    border: ridge #8255ff ;
    margin: 2rem 0.5rem 1rem 1rem;
    padding: 5px 5px 5px 10px;
    background: #fff;
}

p.note1-title1 { /* 箇条書きのボックス内の表題（太字） */
    margin-top: 0rem;
	text-align: justify;
    color: #006400;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-title1o { /* 箇条書きのボックス内の表題（太字） */
    margin-top: 1rem;
	text-align: justify;
    color: #006400;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-title1r { /* 箇条書きのボックス内の表題（赤字） */
    margin-top: 1rem;
	text-align: justify;
    color: #ff0000;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}

b.note1-title1 { /* 箇条書きのボックス内の表題（太字） */
    margin-top: 1rem;
	text-align: justify;
	font-size: medium;
    color: #006400;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}

p.note1-title2 { /* 箇条書きのボックス内の小見出（青文字、太字） */
    margin-top: 1rem;
    padding-left: 1rem;
	text-align: justify;
	font-size: medium;
    color: #006400;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-title3 { /* 箇条書きのボックス内の小見出（青文字、太字） */
    margin-top: 1rem;
    padding-left: 2rem;
	text-align: justify;
	font-size: medium;
    color: #006400;
    font-weight: 700;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}

ul.linote2 {
    margin-top: 0.4rem;
}
@media (min-width: 1200.5px) {
	ul.linote2 {
		font-size: 17px;
	}
	li.listn1 {
		margin-top:15px;
	}
}
li.listn1{ /* 箇条書きのボックス内のリスト */
    list-style-type: none;
    padding-left: 30px;
	text-align: justify;
	background: url(../img/point049_01.gif) 0.3rem 0.3rem no-repeat;
    line-height: 1.7rem;
}
li.listn2{ /* 箇条書きのボックス内のリスト */
    list-style-type: none;
    padding-left: 40px;
	background: url(../img/point027_04.png) 1.5rem 0.3rem no-repeat;
    line-height: 1.7rem;
}
li.listn3{ /* 箇条書きのボックス内のリスト */
    list-style-type: none;
    padding-left: 3rem;
	text-indent: -3rem;
    line-height: 1.7rem;
}
li.listn4{ /* 箇条書きのボックス内のリスト */
    list-style-type: none;
	padding-top: 0.5rem;
    padding-left: 2rem;
	text-indent: -2rem;
    line-height: 1.7rem;
}
li.Normal-n{/* 箇条書きのボックス内の箇条書き（第１段階） */
	margin: 0 0  0 1.5em;
    list-style: none;
	text-indent: -1em;
	text-align: justify;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
li.Normal-n:first-child {
	margin-top: 5px;
}
li.Normal-n2{/* 箇条書きのボックス内の箇条書き（第２段階） */
	margin: 0 0  0 1.5em;
    list-style: none;
    padding-left: 1em;
	text-indent: -2em;
	text-align: justify;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
li.Normal-n2:first-child {
	margin-top: 15px;
}
li.Normal-n2n{/* 箇条書きのボックス内の箇条書き（第２段階） */
	margin: 15px 0  15px 1.5em;
    list-style: none;
    padding-left: 2em;
	text-indent: -2em;
	text-align: justify;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
li.Normal-n2n:first-child {
	margin-top: 15px;
}

p.note1-pf { /* 箇条書きのボックス内の数式 */
    margin: 15px 0 15px 0;
    padding-left: 3rem;
	text-align: justify;
	font-size: medium;
    font-weight: 550;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-pf :first-child {
    margin: 15px 0 5px 0;
}


p.note { /* 箇条書きのボックス内の通常の段落 */
    padding: 10px 3px 10px 1rem;
	text-indent: 1rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1 { /* 箇条書きのボックス内の通常の段落 */
    padding-left: 2rem;
	text-indent: 1rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-1 { /* 箇条書きのボックス内の通常の段落 */
	margin-top: 10px;
    padding-left: 2rem;
	text-indent: -2rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-2 { /* 箇条書きのボックス内の通常の段落　一時下げなし */
	margin-top: 10px;
    padding-left: 2rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-3 { /* 箇条書きのボックス内の通常の段落 */
    padding-left: 1rem;
	text-indent: 1rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-4 { /* 箇条書きのボックス内の通常の段落 */
    padding-left: 2rem;
	text-indent: -2rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-5 { /* 箇条書きのボックス内の通常の段落 */
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}
p.note1-6 { /* 箇条書きのボックス内の通常の段落 */
	margin-top: 15px;
    padding-left: 3rem;
	text-indent: -3rem;
	text-align: justify;
	font-size: medium;
	line-height: 1.7; /* 行間のスペースを指定 */
	width: auto;
}

p.note1-9{/* 解説文中の通常のコメント */
	margin: 12px 0 12px 0;
    padding-left: 8em;
    padding-right: 10px;
	text-indent: -2em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
p.note1-9-para2{/* 解説文中の通常のコメント */
	margin: 12px 0 12px 0;
    padding-left: 8em;
    padding-right: 10px;
	text-indent: 1em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}

/* 引用文（ブロック単位） */

blockquote.quote{/* 引用文（ブロック単位） */
    position: relative;
    margin: 15px 0 5px 3rem;
    padding: 15px 10px 5px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #222;
    border-left: 4px solid #9dd4ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote.quote:before{/* 引用符（ブロック単位） */
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 3px;
    content: "“";
    font-family: sans-serif;
    color: #9dd4ff;
    font-size: 45px;
    line-height: 1;
}
p.pquote{/* 引用文各段落（ブロック単位） */
    padding: 0;
    margin: 7px 0;
    line-height: 1.6;
	text-indent: 1em;
}

blockquote cite {
    display: inline-block;
	margin: 5px 5px 5px 0;
    padding-left: 8em;
	text-indent: -2em;
	text-align: justify;
	font-size: small;
    color: #006400;
	line-height: 1.6; /* 行間のスペースを指定 */
	width: auto;
	clear: both;
}
/*  ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊　表がはみ出したとき横スクロールする　＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
div.Overlay-table {
	display: block;
	position: relative;
	overflow-y: hidden;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 0 2rem 1rem;
}
@media (min-width:500px) {
	div.Overlay-table {
		margin-left: 3rem;
	}
}
div.Overlay-table::-webkit-scrollbar{ /* スクロールバー全体 */
    width: 15px;
}

div.Overlay-table::-webkit-scrollbar-thumb{ /* スクロールバーのある部分 */
    background: #bbddbb;
	border: 2px outset #aaccaa;
    border-radius: 10px;
}
div.Overlay-table::-webkit-scrollbar-track-piece:start{ /* スクロールバーが表示されてない部分（前） */
    background: #fefefe;
	box-shadow:0 0 5px #dddddd inset ;
}
div.Overlay-table::-webkit-scrollbar-track-piece:end{ /* スクロールバーが表示されてない部分（後ろ） */
    background: #fefefe;
	box-shadow:0 0 5px #dddddd inset ;
}

/*ボタンの設定*/
div.Overlay-table::-webkit-scrollbar-button:single-button {
	background-color: #fefefe;
	display: block;
	border-style: solid;
	height: 10px;
	width: 10px;
}
	/* Up */
div.Overlay-table::-webkit-scrollbar-button:single-button:horizontal:increment {
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #33dd33;
}
	/* Down */
div.Overlay-table::-webkit-scrollbar-button:single-button:horizontal:decrement {
	border-top: 10px solid transparent;
	border-right: 10px solid #33dd33;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent ;
}

div.nowrap-table {
	white-space: nowrap;
}

.left-fit {/* 要素を親要素の中で左に寄せる */
    margin-left:0;
}
/*  ＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊　図表を重ねる　＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
div.Overlay-figures {
    clear: both;
	display: block;
	position: relative;
	overflow-x: auto;
	margin-left: 0rem;
	-webkit-overflow-scrolling: touch;
	margin: 0 0 2rem 1rem;
}
@media (min-width:450px) {
	div.Overlay-figures {
		margin-left: 3rem;
	}
}

div.Overlay-figures::-webkit-scrollbar{ /* スクロールバー全体 */
    width: 15px;
}

div.Overlay-figures::-webkit-scrollbar-thumb{ /* スクロールバーのある部分 */
    background: #bbddbb;
	border: 2px outset #aaccaa;
    border-radius: 10px;
}
div.Overlay-figures::-webkit-scrollbar-track-piece:start{ /* スクロールバーが表示されてない部分（前） */
    background: #fefefe;
	box-shadow:0 0 5px #dddddd inset ;
}
div.Overlay-figures::-webkit-scrollbar-track-piece:end{ /* スクロールバーが表示されてない部分（後ろ） */
    background: #fefefe;
	box-shadow:0 0 5px #dddddd inset ;
}

/*ボタンの設定*/
div.Overlay-figures::-webkit-scrollbar-button:single-button {
	background-color: #fefefe;
	display: block;
	border-style: solid;
	height: 10px;
	width: 10px;
}
	/* Up */
div.Overlay-figures::-webkit-scrollbar-button:single-button:horizontal:increment {
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #33dd33;
}
	/* Down */
div.Overlay-figures::-webkit-scrollbar-button:single-button:horizontal:decrement {
	border-top: 10px solid transparent;
	border-right: 10px solid #33dd33;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent ;
}


/* =======================================
	目次にアンダーラインを引く
======================================= */
a.table-link {
	position: relative;
	display: block;
	width: fit-content;
	padding-bottom: 2px;
	text-decoration: none;
	transition: color 0.3s;
}
a.table-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #dc143c;
  transition: .3s;
  transform: translateX(-50%);
}
a.table-link:hover::after{
  width: 100%;
}
a.table-link:link {
	color: #0044cc;
}
a.table-link:visited {
	color: #663399;
}
a.table-link:hover {
	color: #dc143c;
}
a.table-link:focus {
	color: #8b4513;
}

