/*------------------------------------------------------------
00、良く使う
-------------------------------------------------------------*/

/*------------------------------------------------------------
1、align・・・文字の横位置
-------------------------------------------------------------*/

.al-c{ text-align: center; }/*中央寄せ*/
.al-r{ text-align: right; }/*右寄せ*/
.al-l{ text-align: left; }/*左寄せ*/


/**************************************************************
【fontの設定】
**************************************************************/
.text70{font-size:70%}			/* フォントサイズ70% */
.text80{font-size:80%}
.text90{font-size:90%}
.text100{font-size:100%}
.text110{font-size:110%}
.text120{font-size:120%}
.text130{font-size:130%}
.text140{font-size:140%}
.text150{font-size:150%}
.text160{font-size:160%}
.text170{font-size:170%}
.text180{font-size:180%}
.text190{font-size:190%}
.text200{font-size:200%}
.text210{font-size:210%}
.text220{font-size:220%}
.b{font-weight:700}				/* 太字 */
.u{text-decoration:underline}	/* 下線 */
.underline{ text-decoration: underline!important; }

/**************************************************************
【colorの設定】
**************************************************************/
.red{color:red}				/* 赤色 */
.blue{color:#2ca9e1}		/* 青色 */
.green{color:#82ae46}		/* 緑色 */
.orange{color:#ff7d00}		/* 橙色 */
.yellow{color:#fff000}		/* 黄色 */
.pink{color:#ff0084}		/* ピンク */
.gray{color:#ccc}
.l-gray{color:#666666}		/* グレー */
.braun{color:#9e7c7c}		/* ブラウン */
.carkey{color:#ccb400}		/* カーキ */
.navy{color:#000080}		/* ネイビー */
.purple{color:#a67ca6}		/* パープル */


/**************************************************************
【background-colorの設定】
**************************************************************/
.bg-yellow{background:#ff0}		/* 黄色の文字背景 */
.bg-blue{background:#4ab0f5}	/* 青色の文字背景 */
.bg-red{background:red}			/* 赤色の文字背景 */


/*------------------------------------------------------------
17、ノートのような線を引く
-------------------------------------------------------------*/

.noteline{
	border:none;
 	border-bottom:dashed 1px #7070ba;
	height:1px;
	margin: 0 6 0 6;
}

.noteline2{
	border:none;
 	border-bottom:solid 2px #000;
	height:1px;
	margin: 0 6 0 6;
}

.noteline-orange{
	border:none;
	border-bottom:dashed 1px #ff6600;
	height:1px;
	margin: 0 6 0 6;
}
.noteline-green{
	margin: 0 6 0 6;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #33CC66;
}
.noteline-blue{
	margin: 0 6 0 6;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	border-bottom-color: #0099FF;
}


/*------------------------------------------------------------
18、見出し
-------------------------------------------------------------*/

.sample2 {
    position: relative;
    color: 000000;
    background: #ffffff;
    font-size: 15pt ;
    border: 2px solid #fafafa;
    margin: 10px 10px 22px 0px;
    padding: 10px 5px 10px 10px;
    border-radius: 3px;
    box-shadow:1px 3px 7px 0px  #9b9b9b ;
}

.sample2:after, .sample2:before {
    content: "";
    position: absolute;
    top: 100%;
    height: 0;
    width: 0;
}

.sample2:after {
    left: 40px;
    border: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

.sample2:before {
    left: 38px;
    border: 12px solid transparent;
    border-top: 12px solid #fafafa;
}



/*------------------------------------------------------------
19、WEB画像調整
-------------------------------------------------------------*/
.img-box1{
	width:220px;
	margin: 0 0 0 0;
	padding: 0.0;
}
.img-box2{
	width:240px;
	margin: 0 0 0 0;
	padding: 0.0;
}

/*------------------------------------------------------------
20、記事本文行間・位置調整
-------------------------------------------------------------*/
.m15-b{ margin-bottom: 15px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m50-t{ margin-top: 50px!important; }
.m120-b{ margin-bottom: 120px!important; }
.m13-l{ margin-left: 13px!important; }
.m15-l{ margin-left: 15px!important; }
.m26-l{ margin-left: 26px!important; }
.m30-l{ margin-left: 30px!important; }
.m50-l{ margin-left: 50px!important; }
.m55-l{ margin-left: 55px!important; }
.mm20-t{ margin-top: -20px!important; }/*マイナス マージン*/

/*------------------------------------------------------------
21、テーブル幅調整
-------------------------------------------------------------*/
.table250 { width: 250px; }
.table300 { width: 300px; }
.table350 { width: 350px; }
.table400 { width: 400px; }
.table450 { width: 450px; }
.table500 { width: 500px; }
.table550 { width: 550px; }
.table600 { width: 600px; }
.obon2014 {
    width: 90%;
    font-size: 9px ;
}


/*------------------------------------------------------------
見出しタグの組合せで使う場合
-------------------------------------------------------------*/

.heading5 {
    position: relative;
    padding: 20px;
    color: #fff;
    background: #d2b48c;
    overflow: hidden;
}
 
.heading5:before {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-width: 16px 16px 0 0;
    border-style: solid;
    border-color: #fff;
    border-top-color: #998366;
    box-shadow: 0 1px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
}
.heading6 {
    position: relative;
    background: #fff;
    padding: 20px;
    z-index: 10;
    top: 0;
    left: 0;
}
.heading6:before, .heading6:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 1px 4px #aaa;
    -moz-box-shadow: 0 1px 4px #aaa;
    -webkit-box-shadow: 0 1px 4px #aaa;
}
.heading6:before {
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    z-index: -10;
}
.heading6:after {
    background: #87cefa;
    top: 8px;
    left: 8px;
    z-index: -20;
}
.heading7 {
	position: relative;
	background: #fff;
	padding: 15px;
	z-index: 10;
	top: 0;
	left: 0;
	margin-right: 20px;
}
.heading7:before, .heading7:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0 1px 4px #aaa;
    -moz-box-shadow: 0 1px 4px #aaa;
    -webkit-box-shadow: 0 1px 4px #aaa;
}
.heading7:before {
    background: rgba(255,255,255,0.5);
    top: 0;
    left: 0;
    z-index: -10;
}
.heading7:after {
    background: #87cefa;
    top: 8px;
    left: 8px;
    z-index: -20;
}
.heading8{
	position:relative;
	padding-left:30px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
	font-size: 22px;
	line-height: 38px;
	margin-right: 20px;
}
 
.heading8:before{
    content: "□";
    font-size: 100%;
    position: absolute;
    color: #ff6b6e;
    top: -0.6em;
    left: 0.3em;
    height: 12px;
    width: 12px;
}
 
.heading8:after{
    content: "□";
    font-size: 100%;
    position: absolute;
    color: #B92A2C;
    top: -0.3em;
    left: 0;
    height: 12px;
    width: 12px;
}

/*------------------------------------------------------------
見出し風に文章のアクセントで使う場合
-------------------------------------------------------------*/

.heading1{
	position: relative;
	padding-left: 20px;
	border-bottom: 2px solid #ccc;
	font-weight: bold;
	font-size: 20px;
	line-height: 35px;
	margin-right: 20px;
}
 
.heading1:before{
	content:''; 
	height:12px; 
	width:12px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:-0px; 
	left:5px;
	transform:rotate(-50deg);
	-webkit-transform:rotate(-50deg);
	-moz-transform:rotate(-50deg);
	-o-transform:rotate(-50deg);
	-ms-transform:rotate(-50deg);
}
.heading1:after{
	content:''; 
	height:8px; 
	width:6px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:16px; 
	left:2px;
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-ms-transform:rotate(-75deg);
}


.heading2{
	position:relative;
	padding-left:30px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
	font-weight: bold;
	font-size: 22px;
	line-height: 38px;
	margin-right: 20px;
}
 
.heading2:before{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:12px; 
	width:12px; 
	display:block; 
	position:absolute; 
	top:14px; 
	left:7px; 
	background-color:#6B0CE8;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset;
	filter:alpha(opacity=50);
	-moz-opacity:0.50;
	-khtml-opacity: 0.50;
	opacity:0.50;
	z-index: 1;
}
 
.heading2:after{
	content:''; 
	border-radius:30px;
	-webkit-border-radius:30px;
	-moz-border-radius:30px; 
	height:15px; 
	width:15px; 
	display:block; 
	position:absolute; 
	top:7px; 
	left:2px; 
	background-color:#00A8FF;
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset
}
.heading3{
	position:relative;
	padding:9px;
	padding-left:15px;
	font-weight: bold;
	font-size: 18px;
	background-color: #51A2C1;
	color: #fff;
	margin-right: 20px;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}
 
.heading3:before{
	content:''; 
	height:25px; 
	width:2px; 
	display:block; 
	position:absolute; 
	top:5px; 
	left:4px; 
	background-color:#fff;
	border-left: 4px solid #fff;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}

.heading4{
	position: relative;
	padding-left: 20px;
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	margin-right: 20px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #ccc;
}
 
.heading4:before{
	content:''; 
	height:12px; 
	width:12px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:-0px; 
	left:5px;
	transform:rotate(-50deg);
	-webkit-transform:rotate(-50deg);
	-moz-transform:rotate(-50deg);
	-o-transform:rotate(-50deg);
	-ms-transform:rotate(-50deg);
}
.heading4:after{
	content:''; 
	height:8px; 
	width:6px; 
	display:block; 
	background:#00A8FF; 
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset;
	-moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) inset; 
	position:absolute; 
	top:16px; 
	left:2px;
	transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	-ms-transform:rotate(-75deg);
}

/*------------------------------------------------------------
シンプルなボックス風
-------------------------------------------------------------*/

.div1{
	background-color: #fff;
	padding:10px 10px;
	border:1px solid #bbb;
	border-radius: 2px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 0 2px rgba(255, 255, 255, 0.3) inset,
                0 0 10px rgba(0, 0, 0, 0.1) inset,
                0 1px 20px rgba(0, 0, 0, 0.1);
}
.div2{
     border: 3px double #ddd;
     padding: 10px 10px;
     border-radius: 2px;
}

.div2{
     border: 3px double #ddd;
     padding: 10px 10px;
     border-radius: 2px;
}


.div3{
     color: #fff;
     padding: 10px 10px;
     background:rgba(0,0,0,.9);
     border: 1px dotted #eee;
     box-shadow:0px 0px 1px 3px rgba(0, 0, 0, 1);
}
.div4{
     color: #0c3f12;
     padding: 10px 10px;
     background:#efe3d1;
     border: 1px dotted #a28d6f;
     box-shadow:0px 0px 1px 3px #efe3d1;
}
.div5{
     color: #257fd3;
     padding: 10px 10px;
     background:#e9f8f4;
     border: 1px dotted #4f9e89;
     box-shadow:0px 0px 1px 3px #e9f8f4;
}

.div6{
     color: #0c3f12;
     padding: 10px 10px;
     background:#efe3d1;
     border: 1px dotted #a28d6f;
     box-shadow:0px 0px 1px 3px #efe3d1;
}

/* 楽天ウィジェット用 ---------------------------- */
@media only screen and (min-width: 481px){
#rakuten300 {       display:none;}
}
@media screen and (max-width: 480px){
#rakuten336 {       display:none;}
}

/* PC表示の枠幅設定用 ---------------------------- */
@media screen and (min-width: 569px){
.box-sho300{ width: 300px; }
.box-sho350{ width: 350px; }
.box-sho400{ width: 400px; }
.box-sho450{ width: 450px; }
.box-sho500{ width: 500px; }
.box-sho550{ width: 550px; }
}

.kakomiwaku001 {
	position: relative;
	border: solid 3px #95ccff;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku001 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.kakomiwaku001 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku002 {
	position: relative;
	border: solid 3px #95ccff;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku002 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #95ccff;
	font-weight: bold;
}
.kakomiwaku002 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku003 {
	position: relative;
	border: solid 3px #82FBD0;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku003 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #82FBD0;
	font-weight: bold;
}
.kakomiwaku003 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku004 {
	position: relative;
	border: solid 3px #FDD29F;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku004 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #FDD29F;
	font-weight: bold;
}
.kakomiwaku004 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku005 {
	position: relative;
	border: solid 3px #FDCAF0;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku005 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #FDCAF0;
	font-weight: bold;
}
.kakomiwaku005 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.kakomiwaku006 {
	position: relative;
	border: solid 3px #D5D5D5;
	border-radius: 8px;
	margin-top: 2em;
	margin-right: 0;
	margin-bottom: 2em;
	margin-left: 0;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 1.5em;
	padding-left: 1em;
}
.kakomiwaku006 .box-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 17px;
	background: #FFF;
	color: #999999;
	font-weight: bold;
}
.kakomiwaku006 p {
	padding: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.tx-waku1 { 
    border:solid 1px #2d2d2d;  
    background:#ddf4fa; 
    padding:10px 20px 10px 20px;  
    -moz-border-radius: 5px;  
    -webkit-border-radius: 5px; 
    border-radius: 5px;
    width: 80%;
}
.tx-waku2 {
    padding:10px 20px 10px 20px; 
    border:double 4px #4f807c;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px; 
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border-bottom-left-radius:5px;border-bottom-right-radius:5px;
    width: 80%;
}
.tx-waku3 {
    padding:10px 20px 10px 20px; 
    border:double 4px #daae8d;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px; 
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border-bottom-left-radius:5px;border-bottom-right-radius:5px;
    width: 80%;
}
.tx-waku4 {
	border: solid 1px #2d2d2d;
	padding: 10px 20px 10px 20px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width: 90%;
	background-color: #EDE9E2;
}
.tx-waku5 {
	border: solid 1px #2d2d2d;
	padding: 10px 20px 10px 20px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width: 80%;
	background-color: #EBEBF5;
}
.tx-waku6 { 
    border:solid 1px #c4a881;  
    background:#f8f2ea; 
    padding:10px 20px 10px 20px;  
    -moz-border-radius: 5px;  
    -webkit-border-radius: 5px; 
    border-radius: 5px;
    width: 90%;
}
.tx-waku6 p { color: #4c0415!important; }
.tx-waku7 { 
    border:solid 1px #c4a881;  
    background:#f8f2ea; 
    padding:10px 20px 10px 20px;  
    -moz-border-radius: 5px;  
    -webkit-border-radius: 5px; 
    border-radius: 5px;
}
.tx-waku7 { color: #4c0415!important; }

/*------------------------------------------------------------
99、引用風
-------------------------------------------------------------*/
.inyou{
	  color: #777;
	  border:1px solid #ccc;
	  margin:2em 0;
	  font-size: 0.95em;
	  padding:1.5em 2.5em 0.5em;
	  border-radius:10px;
	  position:relative;
  }
.inyou:before{
  font-family: 'FontAwesome';
  content:'\f10d';
  position:absolute;
  width:1em;
  height:1em;
  padding-top:0.25em;
  border-radius:50%;
  display:block;
  text-align:center;
  left:-0.4em;
  top:-0.5em;
  font-size:25px;
  line-height:1;
  color:#999;
  }
.inyou:after{
  font-family: 'FontAwesome';
  content:'\f10e';
  position:absolute;
  width:1em;
  height:1em;
  padding-top:0.25em;
  border-radius:50%;
  display:block;
  text-align:center;
  right:-0.4em;
  bottom:-0.2em;
  font-size:25px;
  line-height:1;
  color:#999;
  }
