﻿@charset "UTF-8";
/* CSS Document */




/*メモ帳スタイル*/	

.note, .note:before, .note:after {
    	background-color: #fff8de;
	background-image:-webkit-linear-gradient(#cfcba2 1px, transparent 1px);
	background-image:-moz-linear-gradient(#cfcba2 1px, transparent 1px);
	background-image:-o-linear-gradient(#cfcba2 1px, transparent 1px);
	background-image:linear-gradient(#cfcba2 1px, transparent 1px);
	background-size: 24px 24px;
	background-repeat: repeat;
	background-position:0 50px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	}
.note {
	position: relative;
	z-index: 20 ;
	margin: 60px auto;
	padding: 0 23px 14px;
	width: 300px;
	line-height: 24px;
	font-size: 12px;
	color: #666;
	}
.note p {
	margin-bottom: 24px;
	}
.note :last-child {
	margin-bottom: 0;
	}
.note:before, .note:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 3px;
	right: 3px;
	margin-top: -2px;
	height: 3px;
	background-size: 1px 1px, 1px 1px, 0 0;
	}
.note:before {
	z-index: -2;
	left: 6px;
	right: 6px;
	height: 6px;
	background-color: #eee;
	}
.ttl {
	position: relative;
	z-index: 20 ;
	margin: 0 -23px 14px;
	height: 40px;
	background: #ffa00c;
	border-radius: 3px 3px 0 0;
	
	}
.ttl > h1 {
	line-height: 38px;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 -1px rgba(0, 0, 0, 0.7);
	}
.ttl:before, .ttl:after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 1px;
	right: 1px;
	height: 0;
	border-top: 1px dashed #617c90;
	border-color: rgba(255, 255, 255, 0.35);
	}
.ttl:after {
	bottom: 3px;
	border-color: #cfcba2;
	border-color: rgba(0, 0, 0, 0.5);
	}



