@charset "utf-8";
/* CSS Document */
/*	==================================================================================================

				ページタイトルデザイン環境

	---------------------------------------------------------------------------------------------	*/
/*  見出しの下にテキストより短い2色ライン 黒・赤*/
.Title-UD_short-2color {
    position: relative;
    text-align: center;
	margin-bottom: 15px;		/* 	タイトルと次のコンテンツの間隔　*/
}
    /*　文字サイズ　デバイス別調整 */
@media screen and (max-width:780px) {
	.Title-UD_short-2color {
		font-size: 20px;
	}
}
@media screen and (min-width:780px) {
	.Title-UD_short-2color {
		font-size: 28px;
	}
}

.Title-UD_short-2color::before {
    border-bottom: 5px solid;		/* 線の幅、種類　下記の2色目とあわせる */
	border-bottom-color: black;		/* 左半分色指定 */
    bottom: -15px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
}
.Title-UD_short-2color::after {
border-bottom: 5px solid;			/* 線の幅、種類　上記の１色目とあわせる */
	border-bottom-color: red;		/* 右半分色指定 */
    bottom: -15px;
    content: "";
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 100px;
    width: 100px;
}

/*  見出しの下にテキストより短い2色ライン 青・橙*/
.Title-UD_short-2color_BO {
    position: relative;
    text-align: center;
	margin-bottom: 15px;		/* 	タイトルと次のコンテンツの間隔　*/
}
    /*　文字サイズ　デバイス別調整 */
@media screen and (max-width:780px) {
	.Title-UD_short-2color_BO {
		font-size: 20px;
	}
}
@media screen and (min-width:780px) {
	.Title-UD_short-2color_BO {
		font-size: 28px;
	}
}

.Title-UD_short-2color_BO::before {
    border-bottom: 5px solid;		/* 線の幅、種類　下記の2色目とあわせる */
	border-bottom-color: #0075c2;		/* 左半分色指定 */
    bottom: -15px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
}
.Title-UD_short-2color_BO::after {
border-bottom: 5px solid;			/* 線の幅、種類　上記の１色目とあわせる */
	border-bottom-color: #ff8200;		/* 右半分色指定 */
    bottom: -15px;
    content: "";
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 100px;
    width: 100px;
}

/*  見出しの下にテキストより短い2色ライン 青・黄*/
.Title-UD_short-2color_BY {
    position: relative;
    text-align: center;
	margin-bottom: 15px;		/* 	タイトルと次のコンテンツの間隔　*/
}
    /*　文字サイズ　デバイス別調整 */
@media screen and (max-width:780px) {
	.Title-UD_short-2color_BY {
		font-size: 20px;
	}
}
@media screen and (min-width:780px) {
	.Title-UD_short-2color_BY {
		font-size: 28px;
	}
}

.Title-UD_short-2color_BY::before {
    border-bottom: 5px solid;		/* 線の幅、種類　下記の2色目とあわせる */
	border-bottom-color: #0075c2;		/* 左半分色指定 */
    bottom: -15px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
}
.Title-UD_short-2color_BY::after {
border-bottom: 5px solid;			/* 線の幅、種類　上記の１色目とあわせる */
	border-bottom-color: #eedc00;		/* 右半分色指定 */
    bottom: -15px;
    content: "";
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 100px;
    width: 100px;
}

/*  見出しの下にテキストより短い2色ライン 青・緑*/
.Title-UD_short-2color_BG {
    position: relative;
    text-align: center;
	margin-bottom: 15px;		/* 	タイトルと次のコンテンツの間隔　*/
}
    /*　文字サイズ　デバイス別調整 */
@media screen and (max-width:780px) {
	.Title-UD_short-2color_BG {
		font-size: 20px;
	}
}
@media screen and (min-width:780px) {
	.Title-UD_short-2color_BG {
		font-size: 28px;
	}
}

.Title-UD_short-2color_BG::before {
    border-bottom: 5px solid;		/* 線の幅、種類　下記の2色目とあわせる */
	border-bottom-color: #0075c2;		/* 左半分色指定 */
    bottom: -15px;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
}
.Title-UD_short-2color_BG::after {
border-bottom: 5px solid;			/* 線の幅、種類　上記の１色目とあわせる */
	border-bottom-color: #71af44;	/* 右半分色指定 */
    bottom: -15px;
    content: "";
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    left: 100px;
    width: 100px;
}

/*=== 上線、ダークグリーンタイトル===	*/
.Title-Symbol-today_opt-DarkGreen {
	display: block;
    -webkit-box-sizing: border-box;	/*	初期環境ない場合設定	*/
    -moz-box-sizing: border-box;	/*	初期環境ない場合設定	*/
    box-sizing: border-box;			/*	初期環境ない場合設定	*/
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem .5rem 130px;
    border-top: 3px solid #000;
	color: black;
}

.Title-Symbol-today_opt-DarkGreen:before {
    position: absolute;
    top: -150%;
    left: -100px;
    width: 220px;
    height: 300%;
    content: '';
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    background-color: darkgreen;
}

.Title-Symbol-today_opt-DarkGreen span {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    padding-top: 1rem;
    padding-left: 5px;
    color: white;
}



/*==================================================================================================*/

