








.wsnw { white-space:nowrap; }

h2 {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}


/* LAYOUT =============================== */
/* HEADER */
#header img {
	width: 100%;
	height: auto;
}
h1 {
	margin: 0;
	padding: .5em;
	background: #D83D3B;
	font-size: 20px;
}
h1 a {
	color: #FFF;
}
/* GLOBAL NAVIGATION */
#nav ul {
	height: 44px;
	display: table;table-layout: fixed;
	width: 100%;
	margin: 0;
	padding: 0 0 1px;
	background: #ffd700;
}
#nav ul a {
	display: block;
	color: #000000;
	font-weight: bold;
}
#nav li {
	display: table-cell;
	height: 100%;
	text-align: center;
	border-right: 1px solid #CCC7C4;
	line-height: 44px;
	font-size: 14px;
}
#nav li:last-child {
	border: none;
}
/* MAIN CONTENTS */
#main {
	padding: 0 10px 20px;
	background: #E2E0DE;
	overflow: hidden;
}
#main h2 {
	color: #423D3A;
	font-size: 20px;
}
.box {
	position: relative;
	border: 5px solid #CCC7C4;
	padding: 10px;
	margin-bottom: 3em;
	background: #FFF;
}
.box h3 {
	margin-top: 0;
	padding-right: 80px;
	font-size: 18px;
	border-bottom: 1px dotted #CCC7C4;
}
.date {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 12px;
	font-weight: bold;
}
.more {
	float: right;
	padding: .2em 1em;
	background: #D83D3B;
	color: #FFF;
	font-weight: bold;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}
.more::before {
	content: '> ';
}
/* FOOTER */
#footer {
	padding: 5px 10px;
	background: #423D3A;
	color: #FFF;
	font-size: 12px;
}

/* 目次デザインカスタマイズ */
#toc_container {
	text-align: center;
	padding: 5% 5% 2%;
	border-top: 4px solid;
	border-color: #000; /* 目次上の線色 */
	box-shadow: 0 3px 5px #ddd;
}
 
.toc_list:not(.toc_list .toc_list .toc_list) {
	list-style: none;
	text-align: left;
	padding-right: 30px !important;
}
 
.toc_list a {
	color: #333; /* リスト文字色 */
	text-decoration: none;
}
 
.toc_list a:hover {
	text-decoration: underline;
}
 
.toc_title {
	font-size: 25px;
	color: #000; /* 目次タイトル色 */
}
 
.toc_toggle {
	display: block;
	position: relative;
}
 
.toc_list li {
	font-weight: 600;
	position: relative;
	font-size: 15px;
	margin-top: 10px;
}
 
.toc_list li:not(li li):before {
	position: absolute;
	content: '';
	left: -1em;
	top: .6em;
	background: #000; /* h2マーカー色 */
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
}

 
.toc_list li ul {
	margin-bottom: 20px;
	padding-left: 20px;
}
 
.toc_list li li {
	font-weight: 400;
	margin: 5px 0;
}
 
.toc_list li li:not(li li li):before {
	position: absolute;
	content: "";
	border-top: 1.5px solid;
	border-color: #000; /* h3マーカー色 */
	width: .7em;
	top: .9em;
	left: -1em;
}
 
/* 目次開閉 */
.toc_toggle:before {
	display: inline-block;
	margin-left: 0;
	padding: 0 5px;
	background: #000; /* 開閉ボタン色 */
	color: #fff; /* 開閉ボタンの文字色 */
	font-size: 13px;
	border: none;
	border-radius: 13px;
	width: 7em;
	font-weight: 600;
}
 
/* 目次の前の数字を削除する場合 */
.toc_number {
	display: none;
}
 /*属性無視 */
.tab_menu{
    /*タブの基本スタイル*/
    border-bottom :solid 3px #5bc0de;
    background-color:#EEE;
    margin: 0;
    padding:0 1rem;

    /*選択されていないタブは透明色*/
    background-color:transport;
}
.tab_contains{
    /*選択されていないコンテンツは非表示*/
    display:none;
}
.tab_radio:checked + .tab_menu{
    /*選択されているタブは白背景*/
    /* タブコンテンツの上線にかぶせて隠す */
    background-color:white;
}
#tab_radio_A:checked ~ #tab_contains_A,
#tab_radio_B:checked ~ #tab_contains_B,
#tab_radio_C:checked ~ #tab_contains_C,
#tab_radio_D:checked ~ #tab_contains_D,
#tab_radio_E:checked ~ #tab_contains_E{
    display:block;

    /*コンテンツの基本スタイル*/
    width:700px;
    border: solid black 1px;
    border-radius:3px;
    padding:1rem;

    /*選択されたタブで上線をかぶせる*/
    //margin-top:-1px;
    background-color:white;
}
.tab_radio{
    /*ラジオボタンは表示しない*/
    display:none;
}
/*画像横並び */
.top-banner{
	display: flex;
	flex-wrap:wrap;
}
.top-banner li {
	width: calc(100%/4);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.top-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #ccc; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}

/* タブ　タイトル枠　2 */
.sample_box1 {
    padding: 1em 1.5em;
    margin: 2em 0;
    border: solid 2px #000000;/*線*/
}
.sample_box1 p {
    margin: 0; 
    padding: 0;
}
/* タブ　タイトル枠　2 */	

/* プラスボックス */
.box27 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #1E1087;
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #1E1087;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0; 
    padding: 0;
}
/* プラスボックス */

/* マイナスボックス */
.box28 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #E42A1A;
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #E42A1A;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box28 p {
    margin: 0; 
    padding: 0;
}
/* マイナスボックス */