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

/**************************
/*全体の装飾
**************************/
html, body {
	margin: 0;         /* 余白の削除 */
	padding: 0;        /* 余白の削除 */
	width: 100%;
	height: 100%;
	text-align: center;
	border: none;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", Helvetica, Sans-Serif;
}
/* レスポンシブ化 */
img, canvas, iframe, video, svg {
	max-width: 100%;
}
.overflow-container {
	overflow-y: scroll;
}
/**************************
/*戻るボタンの装飾
**************************/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
	z-index: 150;
}
#page-top a {
	background: rgba(44,199,255,0.72);
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
	background: rgba(55,80,147,0.61);
}
/**************************
/*ヘッダー
**************************/
/* ヘッダーの固定 */
div#header-fixed {
	position: fixed;            /* ヘッダーの固定 */
	top: 0px;                   /* 位置(上0px) */
	left: 0px;                  /* 位置(右0px) */
	width: 100%;                /* 横幅100%　*/
	height: 120px;              /* 縦幅140px */
	background-image: url(../img/snow-back2-footer.png);
	background-position: top left;
	background-repeat: repeat-x;
}
div#header-bk {
	padding: 0;       /* 上10px、下20pxをあける */
	height: 110px;              /* 縦の高さ110px */
	width: 100%;                /* 横の幅を100% */
	position: fixed;            /* ヘッダーの固定 */
}
div#header {
	/* 表示領域を白枠で囲う border: 5px solid #fff;  */
	height: 100%;              /* 縦の表示領域はheader-bkと同じ */
	width: 960px;              /* 横の幅970px */
	margin: auto;              /* 中央揃え */
}
/* ヘッダー領域内の設定 */
h1 {
	margin:0 auto;
	color: rgba(182,197,219,0.84);
	text-shadow: 1px 1px 0 rgba(134,140,154,0.72);
	font-size: 2em;
}
/**************************
/*フッター
**************************/
/* フッターの固定 */
div#footer-fixed {
	position: fixed;            /* フッターの固定 */
	bottom: 0px;                /* 位置(下0px) */
	left: 0px;                  /* 位置(左0px) */
	width: 100%;                /* 横幅100%　*/
	height: 110px;              /* 縦幅140px */
	background-image: url(../img/snow-back-header.png);
	background-position: bottom left;
	background-repeat: repeat-x;
	bottom: 0;
}
div#footer-bk {
	/*	background-color: #6b92b9;     /* 背景色 */
	padding: 10px auto;       /* 上10px、下20pxをあける */
	height: 110px;              /* 縦の高さ140px */
	width: 100%;                /* 横の幅を100% */
}
div#footer {
	/*	border: 5px solid #fff;    /* 表示領域を白枠で囲う */
	height: 100%;              /* 縦の表示領域はheader-bkと同じ */
	width: 960px;              /* 横の幅970px */
	margin: 0 auto;              /* 中央揃え */
}
/* ナビ */	

#footer nav {
	position: absolute;
	bottom: 10px;
	left:20px;
}
li {
	border-left: 1px dotted #333;
	border-right: 1px dotted #333;
	float: left;
	width: 110px;
	padding: 0;
	border-right: 1px dotted #333;
	text-align: center;
	list-style-type: none;
}
li a {
	text-decoration: none;
}
li a:link {
	color: rgba(41,87,142,0.88);
}
li a:visited {
	color: #0D6760;
}
li a:hover {
	color: #FFF;
	background-color:rgba(65,135,208,0.45);
}
li a:active {
	color: #FFF;
	background-color: #630;
}
/*clearfix*/
.navi:after {
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	content: ".";
	visibility: hidden;
	font-size: 0.1em;
}
li+ li {
	border-left: 0;
	border-right: 1px dotted rgba(60,105,167,0.65);
}
.snow_spin {
	width: 30px;
	vertical-align: middle;
	animation: spin 3s linear 0s infinite normal;
	-webkit-animation: spin 3s linear 0s infinite normal;
}
 @keyframes spin {
 from {
 transform: rotate(0deg);
}
 to {
 transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
 from {
 -webkit-transform: rotate(0deg);
}
 to {
 -webkit-transform: rotate(360deg);
}
}
.snow_hover_spin {
	width: 30px;
	vertical-align: middle;
}
.snow_hover_spin:hover {
	width: 30px;
	vertical-align: middle;
	animation: spin 3s linear 0s infinite normal;
	-webkit-animation: spin 3s linear 0s infinite normal;
}
 @keyframes spin {
 from {
 transform: rotate(0deg);
}
 to {
 transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
 from {
 -webkit-transform: rotate(0deg);
}
 to {
 -webkit-transform: rotate(360deg);
}
}
/**************************
/*メイン
**************************/
/* メイン領域の定義 */
div#body-bk {
	padding: 110px 0 110px 0;    /* 上下に160pxを余白を取る130px 0 160px 0 */
	background-color: #6b92b9;     /* 背景色 */
	background-image: url(../img/snow.png), url(../img/snow2.png), url(../img/snow3.png);
	-webkit-animation: snow 20s linear infinite;/*chrome&safari*/
	-moz-animation: snow 20s linear infinite;/*firefox*/
	-ms-animation: snow 20s linear infinite;/*ie*/
	animation: snow 20s linear infinite;
}
 @keyframes snow {
 0% {
background-position: 0 0, 0 0, 0 0;
}
 100% {
background-position: 500px 500px, 300px 300px, 400px 400px;
}
}
/*chrome&safari*/
@-webkit-keyframes snow {
 0% {
background-position: 0 0, 0 0, 0 0;
}
 100% {
background-position: 500px 500px, 300px 300px, 400px 400px;
}
}
/*firefox*/
@-moz-keyframes snow {
 0% {
background-position: 0 0, 0 0, 0 0;
}
 100% {
background-position: 500px 500px, 300px 300px, 400px 400px;
}
}
/*ie*/
@-ms-keyframes snow {
 0% {
background-position: 0px 0px, 0px 0px, 0px 0px;
}
 100% {
background-position: 500px 500px, 300px 300px, 400px 400px;
}
}
div#body {
	width: 960px;
	margin: auto;
}
/* メイン領域内の設定 */

.snow {
	background-color: rgba(255,255,255,0.57);
	border-radius: 20px;
	margin: 10px auto;/*10px auto 20px*/
	width: 100%;
	-webkit-box-shadow: 2px 2px rgba(134,140,154,0.72);
	box-shadow: 2px 2px rgba(134,140,154,0.72);
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.contents {
	margin: 0 auto;
	width: 98%;
}
.snow h2 {
	color: rgba(251,251,251,1.00);
	border-bottom: 3px double #fff;
	text-shadow: 1px 1px 0 rgba(134,140,154,0.72);
	margin-left: 2%;
	margin-bottom: 0.5em;
	padding-top: 1em;
	letter-spacing: 0.2em;
	width: 30%;
}
/* メイン領域内の設定 */
	
/* ノートデザイン部分のタイトル */
.notedesign p.notetitle {
	margin: 0px 0px 2% 0px;/*外側の余白*/
	padding: 3px 0px;/*内側の余白*/
	border-bottom: 3px double #6196AA;/*下側に二重線*/
	font-weight: bold;/*文字を太字*/
	color: #0F176E;/*文字色*/
	margin-left: 2em;
}
/* ▼ノートタイトルの日付欄▼ */
div.notedesign p.notetitle span.date {
	float: right;
}
/* ▼ノート内部▼ */
.underline p {
	font-size: 100%;
	line-height: 2em;
}
/* ▼3カラム▼ */
.left3 {
	width: 30%;
	height: auto;
	margin-left: 2%;
	float: left;
}
.left3:last-child {
	margin-right: 2%;
}
.left3 img {
	padding: 5px;
	margin-bottom: 5px;
	width: 100%;
}
/*▼ 2カラム▼ */
.left2 {
	float: left;
	width: 26%;
	height: auto;
	margin-left: 2%;
}
.left2 img {
	width: 100%;
}
.right2 {
	float: right;
	width: 70%;
	margin-right: 2%;
}
.right2 p {
	text-align: left;
	margin-left: 2em;
	color: #0D4470;
}

/**************************
/*の装飾
**************************/

/**************************
/*の装飾
**************************/
