@charset "UTF-8" ;

/* ボディ */
body
{
	margin: 0 ;		/* スペース */
	padding: 0 ;		/* 余白 */
	font-size: 15px ;	/* 文字サイズ */
/*	line-height: 1.618 ;	/* 行の高さ */
	line-height: 1.55 ;
	background: #eee ;			/* 背景色(確認用) */
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
p{margin: 10px ;}
A:link {text-decoration: none; background: none; color:#060} /* font-wight:bold color:#0000ff*/
A:visited {text-decoration: none; background: none; color:#060}
A:active {text-decoration: none; color:#090;}
A:hover {text-decoration: underline:none; color:#090; top:1px; left:1px; position:relative;}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ボディ */
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}
}

/* ヘッダー */
.header
{
	width: 100%;
	max-width: 850px;
	margin: 0 auto ;	/* 左右に[auto]を指定することで、真ん中に寄る */
	border-bottom: 1px solid #eeffee ;	/* 枠線 */
	text-align: left ;	/* テキスト、画像の真ん中寄せ */
	padding: 0px 0px ;	/* 上下の余白 */
	margin-top: 5px ;	/* 他のブロックとのスペース */
	margin-bottom: 0 ;	/* 他のブロックとのスペース */
	background: #fff ;	/* 背景色(確認用) */
	background-image : url("./img/qr.png");
	background-repeat : no-repeat;
	background-position : right;
}
@media screen and (max-width:768px)
{
	.header{
		background-image : none;
	}
}

.menu-wrapper
{
	width: 100%;
	max-width: 850px;
	margin: 0 auto ;		/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0px 0px ;			/* 上下の余白 */
	background: #eee ;		/* 背景色(確認用) */
}
.menu-wrapper ul
{
	padding: 0;
	margin: 0;
}

/* ロゴ画像を囲むh1 */
.logo-wrapper{
	margin: 0 ;
	padding: 0 ;
	line-height: 0 ;
}
/* ロゴ画像 */
.logo,.logo2{
	width: 400px ;
	height: auto ;
	margin-left: 20px  ;
}
.logo{
	display: none;
}

.shacho{/* 社長の画像 */
	margin: 10px 20px; /*上右下左*/
	padding: 0;
	width:23%;
	height:auto;
	float: left;
}

@media screen and (max-width:768px)
{
	.katsudo-mado {
		padding: 0;
		margin: 0;
		width: 100%;
		float: none;
	}
}
/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	/* ロゴ画像 */
	.logo2{display:none;}
	.logo
	{
		display:inline;
		width: 250px ;
		margin-left: 10px  ;
	}
	.eventinfo { /* イベント情報を1行で表示 */
		display: none;
	}
}

/* フッター */
.footer
{
	clear: both ;
	color: #333;
	margin: 0px auto ;
	padding: 0px ;
	border: 0 ;
/*	text-shadow: 1px 2px 5px rgba(0, 0, 0, 2.5);*/
	width: 100%;
	height: auto;
	max-width: 850px;
	text-align: right ;	/* テキスト、画像の寄せ */
	background: #ddd ;
/*	background-image: url("./img/bottom.png");*/
	border-top: 10px solid #fff;
	border-bottom: 5px solid #eee;
}


/* 全体(デスクトップPCとスマホ)に適用するCSS */
.main
{
	width: 100%;
	max-width: 850px;
	margin: 0 auto ;		/* 左右に[auto]を指定することで、真ん中に寄る */
	padding: 0 ;			/* 上下左右の余白を0にしておく */
	background: #fff ;			/* 背景色(確認用) */
	border-bottom: 10px solid #fff;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:479px)
{
	.header	{width: auto ;}
	.footer	{width: auto ;}
	.main
	{
		width: auto ;
		padding: 0 ;		/* 余白 */
		margin: 0 auto ;
		border: none ;		/* 枠線 */
	}
}

<!-- メニュー -->
#menu {
	width: 100%;
	margin: 0 auto;
	padding: 0 ;
	border: none;
	font-size: 17px ;
	font-weight: bold;
}
#menu li{
	display: block;
	float: left;
	width: 20.00%; /* 何分割？100/メニュー数 */
	margin: 0 auto;
	padding: 0;
	border-bottom: 1px solid #fff;/* メニュー下の余白 */
	font-size: 17px ;
	font-weight: bold;
}
#menu li a {
	display: block;
	padding: 16px 0 10px;
	background-color: #ddd;*/
	
	color: #f00;
	text-align: center;
	text-decoration: none;
	border-right:2px solid #eee;
	margin: 0 auto;
	line-height: 0.98em;
	font-size: 17px ;
	font-weight: bold;
}

#menu li:last-child a{
/*	border: none;*/
}
#menu li a:hover{
	background: #ccc;
	color: #030;
}


/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	#menu li {
		width: 20.00%;
		font-size: 16px ;
	}
	#menu li a {
		padding: 8px 0 8px;
		font-size: 16px ;
	}
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
	#menu li {
		width: 33.3%;
		font-size: 15px ;
	}
	#menu li a {
		padding: 6px 0 6px;
		font-size: 15px ;
	}
}

/****************************/

h1,h2 {
	clear: both ;
	padding: .4em .75em;
	background-color: #f6f9f6;
	color: #666;
	font-size: 16px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
	border-radius: 4px;
	margin-top: 12px  ;
	margin-bottom: 3px  ;
	margin-right: 1%  ;
	margin-left: 1%  ;
	border-top: 10px solid #fff;
	border-bottom: 1px solid #ccc;
}
h2 {
	background-color: #f6f6f9;
/*	margin-right: 2%  ;*/
/*	margin-left: 2%  ;*/
}

h1:before,h2:before {
	content: '◆';
	color: #070;
	margin-right: 4px;
	}
h2:before {
	color: #9c0;
	}


.photolink {
	color: #00f;
	font-size: 1.02em;
	border: dotted 2px #f60;
	padding: 2px 4px;
	margin-left: 5px;
	white-space: nowrap;
}
.wspace{
	white-space: nowrap;
	padding: 0px 4px;
}

.kyocho{
	font-size: 150%;
}

.topimg {
	margin: 0; /*上右下左*/
	padding: 0;
	width:100%;
	height:auto;
}
.rinen-wrapper {
	margin: 0 auto; /*上右下左*/
	padding: 0;
	max-width: 750px;
	height:auto;
}
.enkakuimg-wrapper {
	margin: 0 auto; /*上右下左*/
	padding: 0;
	max-width: 500px;
	height:auto;
}

.list1 li{
	position:relative;
	padding-left:20px;
}

.list1 li:before{
	content:''; 
	display:block; 
	position:absolute; 
	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset;
	top:5px; 
	left:2px; 
	height:0; 
	width:0; 
	border-top: 6px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid #00f;
}


table.gaiyo {
	border-collapse: separate;
	order-spacing: 1px;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
	margin: 0 auto;
	}
table.gaiyo th {
	width: 150px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	}
table.gaiyo td {
	width: 350px;
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	}

table.sankaku {
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
table.sankaku th {
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	background: #eee;
}
table.sankaku td {
	padding: 10px;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

table.toiawase {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
table.toiawase th {
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	background: #eee;
}
table.toiawase td {
	padding: 10px;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.rinen{
	text-align: center;
	font-size: 220%; 
}
/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	.rinen{
		font-size: 170%; 
	}
}
@media only screen and (max-width: 480px) {
	.rinen{
		font-size: 150%;
		font-weight: bold;
	}
}

.jisseki-wrapper {
	max-width: 88%;
	margin: 0 auto ;	/* 左右に[auto]で中寄せ */
	padding: 0px 0px ;	/* 上下の余白 */
	}
/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	.jisseki-wrapper {
		max-width: 95%;
		}
	}
/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
	.jisseki-wrapper {
		max-width: 98%;
		}
	}
table.jisseki {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
	text-align: left;
	line-height: 1.5;
	border-left: 1px solid #eee;
	padding: 0px 0px ;
	margin: 0;
}
table.jisseki th {
/*	width: 100%;*/
	padding: 8px;
	font-size: 16px ;
	font-weight: bold;
	vertical-align: top;
	text-align: center;
	color: #000;
	background: #eee;
	border-right: 1px solid #ccc;
	border-left: 1px solid #eee;
}
table.jisseki td {
	padding: 8px;
	vertical-align: top;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #fff;
/*	font-weight: normal;*/
}


ul.gaiyonaka {
	list-style-type: none;
	}

.border_radius {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	box-shadow: 0 2px 3px rgba(0, 0, 0, .4);
}

---------------------------------------------------------------------------*/
