@charset "utf-8";

/*-------------------------------------
css初期化
--------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	font-size: 100%;     
}

div:after {
	content: "";
	display: block;
	clear: both;
}

/*-------------------------------------
タグの基本設定
--------------------------------------*/
body {
	background: rgb(255, 197, 5);
	line-height: 1.6;
	font-size: 81.25%;
	color:  #aaaaaa;
}

html {
	overflow-y: scroll;
}

a {
	text-decoration: none;
	outline: none;
	color: #333333;
}

a:hover{
	text-decoration: underline;
	color: #aaaaaa;
}

a:hover img{
	opacity: 0.80;
}

/*-------------------------------------
Container
--------------------------------------*/
div#Container {
	width: 945px;
	padding: 10px 0;
	margin: 0 auto;
}

/* --- 1ページ目（HOME）の背景 --- */
div#Container.home {
    /* CSSフォルダから見て1つ上のimgフォルダの中にある画像を指定 */
    background-image: url("Containe-1.jpg");
    background-repeat: no-repeat;
    /* 幅は合わせるが、縦は無理に引き伸ばさない（柄の大きさが変わらない設定） */
    background-size: 100% auto;
    background-position: top center;
}

/* --- 2ページ目（STEP1）の背景 --- */
div#Container.step1 {
    background-image: url("containe2.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

/* --- 3ページ目（STEP2）の背景 --- */
div#Container.step2 {
    background-image: url("containe2.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

/*-------------------------------------
h1　大見出し（タイトル）
--------------------------------------*/
h1 {
	padding: 10px;
	text-align: center;
	font-size: 200%;
	font-weight: bold;
	color: rgb(255, 197, 5);
	font-size: 50PX;

/* --- ここから追加 --- */
    font-family: 'Kaushan Script', cursive;
    /* --- ここまで追加 --- */

    padding: 10px;
    text-align: center;
    /* font-size: 200%; は下の50PXで上書きされているので消してもOK */
    font-weight: bold;
    color: rgb(255, 197, 5);
    font-size: 50PX

}

/*-------------------------------------
Contents
--------------------------------------*/
div#Contents {
	width: 945px;
	margin: 0 auto;
	padding: 10px 0;
	overflow: hidden;
	
}

/*-------------------------------------
Nav　グローバルナビゲーション
--------------------------------------*/
nav {
	width: 945px;
	margin: 0 aut;
}

nav ul li {
	list-style: none;
	width: 315px;
	font-size: 1.2em;
	margin: 0 0 20px 0;
	float: left;
}

/*通常時時*/
nav ul li a {
	display: block;
	padding: 15px;
	background: rgb(255, 197, 5);
	text-align: center;
	text-decoration: none;
	color: #fff;
	overflow: hidden;
}

/*マウスをリンクの上に置いた時*/
nav ul li a:hover {
	background: #fffefdfa;
	text-decoration: none;
	color: rgb(255, 197, 5);
}

/*リンクが有効になった時*/
nav ul li.active a {
	background: #ffa805;
	text-decoration: none;
	color: #ffffff;
}

/*-------------------------------------
Main
--------------------------------------*/
div#Main {
	width: 700px;
	margin: 0 auto;
}

/*-------------------------------------
Main_h2　小見出し
--------------------------------------*/
div#Main h2 {
	font-size: 105%;
	font-weight: bold;
	color: #aaaaaa;
	padding-bottom: 5px;
}

/*-------------------------------------
Main_TopImg　トップページの画像
--------------------------------------*/
div#Main div#TopImg {
	margin: 5px auto 0 auto;
	text-align: center;
}

/*-------------------------------------
Main_PortImg　課題ページの画像
--------------------------------------*/
div#Main div#PortImg {
	margin: 5px auto 0 auto;
	text-align: center;
}

/*-------------------------------------
Main_p　学校生活での感想 / 課題の感想
--------------------------------------*/
div#Main p {
	color: #aaaaaa;
	margin-top: 14px;
}

/*-------------------------------------
Main_table　課題ページの表
--------------------------------------*/
div#Main table {
	width: 80%;
	margin: 10px auto 20px auto;
	border-collapse: collapse;
	border: 0 none;
}

div#Main table tr th {
	width: 25%;
	padding: 5px 10px;
	background: rgb(255, 197, 5);
	border: 1px solid #504946;
	text-align: left;
	vertical-align: top;
	letter-spacing: 0.5em;
	color: #ffffff;
}

div#Main table tr td {
	width: 75%;
	padding: 5px 10px;
	border: 1px solid #504946;
	text-align: left;
	vertical-align: top;
}

div#Main table tr td ul {
	padding: 0 0 0 8px;
	margin: 0 0 0 8px;
}

div#Main table tr td ol {
	padding: 0 0 0 8px;
	margin: 0 0 0 8px;
}

/*-------------------------------------
pagetop　ページトップへ移動
--------------------------------------*/
p.pagetop{
	text-align: right;
}

/*-------------------------------------
address　コピーライトマーク
--------------------------------------*/
address {
	clear: both;
	text-align: center;
	color: #504946;
}

/* --- ▼▼ ここに新しく貼り付け！ ▼▼ --- */

nav ul li a {
    font-family: 'Kaushan Script', cursive;
    font-size: 130%;
}