﻿@charset "utf-8";

/* 
==============================================================================================================================================
全端末共通設定
==============================================================================================================================================
*/

/* 
------------------------------------------------------------------------
全体の設定
------------------------------------------------------------------------
*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #fff;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #005c2b;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%; height: 500px}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*リンク*/
a {
	color: #fff;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #fcee21;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*
------------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------
*/
header {
	display: -webkit-flex;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	align-items:stretch;

	height: 100%;
	background: #009245;	/*背景色*/
  
}

header  #left{
	-webkit-flex: 1;
    flex: 1;
}

header #right{
	-webkit-flex: 1;
    flex: 1;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header #logo img{
	width: 80%;
	top:50%;
}

header #toolname {
	margin-top:20px;
	font-weight: bold;
	font-size: 20px;
	width: 100%;
	text-align:center;
}

/*
------------------------------------------------------------------------
メニュー
------------------------------------------------------------------------
*/

/*メニューブロック全体への指定*/
#menubar {
	position: absolute;
	bottom: 20%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: start;
}
/*メニュー１個あたりの指定*/
#menubar li {
	/* display: inline-block; */
	display: list-item;
	margin: 0 3%;
	/* animation-name: opa1;
	animation-delay: 1S;
	animation-duration: 1S;
	animation-fill-mode: both; */
}
#menubar li a {
	text-decoration: none ;display: block ;text-align: start;
	width: 340px;	/*メニューの幅*/
	color: #fff;	/*文字色*/
	border-bottom: 2px solid transparent;	/*下線の幅、線種、色。transparentは透明の事。*/
	padding-bottom: 7px;	/*下線と文字の間にとる余白*/
}
/*マウスオン時の指定*/
#menubar li a:hover {
	border-bottom: 2px solid #fff;	/*下線の幅、線種、色*/
	letter-spacing: 0.1em;			/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

#menubar li.subMenu {
	font-size: small;

}

/*
------------------------------------------------------------------------
コンテナー（headerとfooter以外）
------------------------------------------------------------------------
*/

#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*
------------------------------------------------------------------------
コンテンツ（コンテナー内のブロック）
------------------------------------------------------------------------
*/

#contents {
	overflow: hidden;
	padding: 50px 3%;
}
#contents section + section {
	padding-top: 50px;
	
}

/*コンテンツ内のh2*/
#contents h2 {
	font-weight: bold;
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 24px;		/*文字サイズ*/
	text-align: left;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: rgb(2, 43, 9);	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 15px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}

/*コンテンツ内のh3*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 16px;		/*文字サイズ*/
	text-align: left;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 15px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}

/*コンテンツ内のp(段落)*/
#contents p {
	padding: 0px 20px 20px;	
}

/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}

#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}


/*
------------------------------------------------------------------------
フッター
------------------------------------------------------------------------
*/

footer {
	clear: both;
	text-align: center;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}


/*
------------------------------------------------------------------------
ul.disc,olタグ
------------------------------------------------------------------------
*/

ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*
------------------------------------------------------------------------
その他
------------------------------------------------------------------------
*/

.look {background: #000;border: 1px solid #666;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #fcee21;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}





/* 
==============================================================================================================================================
画面幅480px以下の設定
==============================================================================================================================================
*/
@media screen and (max-width:480px){

	/*
	--------------------------------------------------------------------------
	ヘッダー
	--------------------------------------------------------------------------
	*/
	header {
		flex-flow: column-reverse wrap;
	}

	
	header #right{
		justify-content: flex-start;
		align-items:flex-start;
	}
	
	header #logo img{
		width: 100px;
		margin:50px 0 0 20px;
	}
	
	header #toolname {
		margin: 10px 0 0 20px;
		font-size: 16px;
		text-align:start;
	}
	
	/*
	--------------------------------------------------------------------------
	コンテナー
	--------------------------------------------------------------------------
	*/
	#container {
		font-size: 12px;
		font-size: 2.93vw;
	}

	/*
	--------------------------------------------------------------------------
	コンテンツ
	--------------------------------------------------------------------------
	*/
	/*コンテンツ内h2*/
	#contents h2 {
		font-size: 16px;	
	}

	/*コンテンツ内h3*/
	#contents h3 {
		font-size: 14px;	
	}

	/*
	--------------------------------------------------------------------------
	ul.disc,olタグ
	--------------------------------------------------------------------------
	*/
	ul.disc {
		padding: 0 0px 20px 35px;
	}
	ol {
		padding: 0 0px 20px 35px;
	}

	/*
	--------------------------------------------------------------------------
	その他
	--------------------------------------------------------------------------
	*/
	.ws {width: 96%;}
	.big1 {font-size: 22px;letter-spacing: normal;}

}

