@charset "shift_jis";
/*************************************************************/
/*　　　　　2019年は収支をつけようキャンペーン用CSS　　　　　*/
/*************************************************************/
/*** 全ページ共通 ***/
* {
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
	word-break:break-all;
	-webkit-appearance:none;
	border-radius:0;
}
html, body {
	background-color:#FFF;
	color:#000;
	font-size:1rem;
	line-height:1.25;
}
/*** リード ***/
.lead {
	margin:1rem;
	text-align:left;
	text-align:justify;
}
/*** リンクボタン ***/
.btnBox {
	margin:0 auto;
	text-align:center;
}
.btnBox > a {
	margin:0 auto;
	padding:0.5rem 0;
	display:block;
	font-size:1.2rem;
	line-height:1.1;
	font-weight:bold;
	text-decoration:none;
	color:#FFF;
	text-shadow:0 -1px 0 rgba(0,0,0,0.6);
	background:-moz-linear-gradient(top, #0CF 0%, #06F 100%);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #0CF), color-stop(100%, #06F));
	background-color:#0CF;
	border:1px solid #CDD5DF;
	border-radius:6px;
}
/*** 本文 ***/
.textBox {
	margin:-0.5rem 1.25rem 0 1.25rem;
	padding:1.5rem 1rem 1rem;
	text-align:left;
	text-align:justify;
	background-color:rgba(255,153,0,0.1);
}
.textBox.info {
	background-color:rgba(237,28,36,0.05);
}
/*** 見出し ***/
.midashi {
	margin:2rem 0.25rem 0 0.25rem;
	padding:0 15px 0 0;
	position:relative;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:1.4rem;
	color:#FFF;
	font-weight:bold;
	background-color:#F90;
	text-shadow:1px 1px 0 rgba(0,0,0,0.5);
}
.midashi::before,
.midashi::after {
	content:'';
	position:absolute;
	border-color:transparent;
}
.midashi::before {
	top:100%;
	left:0;
	border-style:solid;
	border-width:0 1rem 0.5rem 0;
	border-right-color:#bf7300;
}
.midashi::after {
	top:0;
	right:0;
	border-style:solid;
	border-width:25px 15px;
	border-right-color:#FFF;
	z-index:2;
}
.midashi.info {
	background-color:#ed1c24;
}
.midashi.info::before {
	border-right-color:#b2151b;
}
.midashi.info::after {
	border-top-color:#b2151b;
}
/*** リニューアルのお知らせ ***/
.infoBox {
	margin:2rem 1rem 1rem;
	background-color:#ed1c24;
	border:solid 1px #ed1c24;
	border-radius:10px;
}
.infoBox > .title {
	padding:0.75rem;
	text-align:center;
	font-size:1.4rem;
	line-height:1.0;
	font-weight:bold;
	color:#FFF;
	background-color:#ed1c24;
	border-radius:10px 10px 0 0;
	text-shadow:1px 1px 0 rgba(0,0,0,0.5);
}
.infoBox > .text {
	padding:1rem;
	text-align:left;
	background-color:#FFF;
	text-align:justify;
	border-radius:0 0 10px 10px;
}
.infoBox > .text p,
.textBox > p {
	padding:0.5rem 0;
	text-align:center;
	font-size:1.15rem;
	color:#ed1c24;
	background-color:rgba(237,28,36,0.25);
	background:-moz-linear-gradient(left, rgba(237,28,36,0) 0%, rgba(237,28,36,0.2) 20%, rgba(237,28,36,0.2) 80%, rgba(237,28,36,0) 100%);
	background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(237,28,36,0)), color-stop(20%, rgba(237,28,36,0.2)), color-stop(80%, rgba(237,28,36,0.2)), color-stop(100%, rgba(237,28,36,0)));
}
/*** 戻るリンク ***/
.backlink {
	margin-top:2rem;
	padding:1rem 0;
	text-align:center;
	line-height:1.0;
	background-color:transparent;
	border-top:solid 1px #999;
}
