/*
Theme Name: sumple1
Author: User
Author URI: http://.com
Description: サンプルのテーマ
*/

@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font: 15px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォントファミリー*/
	color: #333;	/*全体の文字色*/
	background:#fffcca url(../image/.gif);
	overflow-y:scroll;
	padding-bottom:160px;
	position:relative;
	z-index:0;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure {
	margin: 0px;
	padding: 0px;
}
ul {
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
input, textarea, select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #f9b600;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*
---------------------------------------------------------------------------*/
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
.ky_container {
	width: 1060px;	/*コンテナー幅*/
	margin: 0px auto;
	position:relative;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 20px 30px 20px 10px;	/*ヘッダー内の余白*/
	overflow: hidden;
}
/*ロゴ画像*/
header .ky_logo {
	float: left;	/*ロゴを左寄せ*/
}
/*電話番号ボックスの設定*/
header address {
	float: right;		/*電話番号ボックスを右寄せ*/
	padding-top:25px;
}
/*電話番号の文字設定*/
header address .ky_tel {
	font-size: 16px;	/*文字サイズ*/
	color: #f9b600;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: inline;
}
header address .ky_tel li {
	display: inline;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav.ky_menubar ul {
	clear: both;
	margin-left: 15px;
}
/*メニュー１個ごとの設定*/
nav.ky_menubar ul li {
	float: left;
	width: 165px;	/*幅*/
	background: #6ca8ff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#2484e5), to(#49aaf4));	/*グラデーション*/
	background: -webkit-linear-gradient(#2484e5, #49aaf4);	/*同上*/
	background: linear-gradient(#2484e5, #49aaf4);			/*同上*/
	margin-left: 5px;	/*メニュー間にあけるスペース*/
	border-radius:5px;
	margin-bottom:5px;
}
nav.ky_menubar ul li a {
	text-decoration: none;
	display: block;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	text-align: center;		/*文字をセンタリング*/
	padding: 6px 0px;		/*上下、左右への余白*/
	border: 1px solid #fff;		/*上側への線の幅、線種、色*/
	border-radius:5px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color:#FFF;
}
/*最初のメニューの設定*/
nav.ky_menubar ul li:first-child {
	margin-left: 0px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav.ky_menubar ul li a:hover, nav.ky_menubar ul li.ky_current a {
	/*文字色*/
	text-shadow:none;
	background-color:#2484e5;
	border-radius:5px;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
.ky_contents {
	clear: left;
	overflow: hidden;
	padding: 10px 20px 0px;	/*上、左右、下への余白*/
	color: #333;		/*文字色*/
}
/*コンテンツ内のリンクテキストの色*/
.contents a {
}
/*コンテンツ内のリンクテキストのマウスオン時の色*/
.contents a:hover {
	color: #6aacd1;
}
/*TOPスライド用
---------------------------------------------------- */
.ky_stage {
	position: relative;
	max-width:1020px;
	margin: 0 auto;
	margin-bottom:15px;
	height:420px;
	/* box-shadow */
box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-webkit-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-moz-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
}
.ky_pic {
	position: absolute;
}
.ky_pic img {/*TOP画像の枚数で変更する　1枚の秒数×枚数*/
	width: 100%;
	height: auto;
	opacity:0;
	-moz-animation: imgTrans 20s infinite;
	-webkit-animation: imgTrans 15s ease-in infinite;
	animation: imgTrans 20s infinite;
}
#ky_photo1 img {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
#ky_photo2 img {
	-moz-animation-delay: 5s;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}
#ky_photo3 img {
	-moz-animation-delay: 10s;
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
}
#ky_photo4 img {
	-moz-animation-delay: 15s;
	-webkit-animation-delay: 15s;
	animation-delay: 15s;
}
#ky_photo5 img {
	-moz-animation-delay: 20s;
	-webkit-animation-delay: 20s;
	animation-delay: 20s;
}
@-webkit-keyframes imgTrans {
0% {
opacity:0;
}
7% {
opacity:1;
}
18% {
opacity:1;
}
25% {
opacity:0;
}
100% {
opacity:0;
}
}
@-moz-keyframes imgTrans {
0% {
opacity:0;
}
7% {
opacity:1;
}
18% {
opacity:1;
}
25% {
opacity:0;
}
100% {
opacity:0;
}
}
@keyframes imgTrans {
0% {
opacity:0;
}
7% {
opacity:1;
}
18% {
opacity:1;
}
25% {
opacity:0;
}
100% {
opacity:0;
}
}
/*TOPスライド用 end
---------------------------------------------------- */

/*メインコンテンツ
---------------------------------------------------- */
.ky_main {
	float: left;	/*右側に回り込み*/
	width: 740px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	border:1px solid #CCC;
	border-radius:5px;
	padding:15px;
	background-color:#fff;
	min-height:1000px;
	/* box-shadow */
box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-webkit-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-moz-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
}
/*mainコンテンツのh2タグの設定*/
.ky_main h2 {
	clear: both;
	font-size: 180%;
	color: #355995;
	padding: 10px 0px 8px 60px;
	border-bottom: medium none;
	border-bottom:2px dashed #7ED1D9;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+50,ededed+51,ffffff+100;White+Gloss+%232 */
background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 1) 0%, rgba(243, 243, 243, 1) 50%, rgba(237, 237, 237, 1) 51%, rgba(255, 255, 255, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 1) 0%, rgba(243, 243, 243, 1) 50%, rgba(237, 237, 237, 1) 51%, rgba(255, 255, 255, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(243, 243, 243, 1) 50%, rgba(237, 237, 237, 1) 51%, rgba(255, 255, 255, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	background: url(../image/penki.gif) no-repeat;
	background-position: left top;
}
/*mainコンテンツのh3タグの設定*/
.ky_main h3 {
	clear: both;
	font-size: 120%;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
.ky_main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}
/*一覧ページ用ボックス（./service_list.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.ky_main section.ky_list {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: #e3e3e3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	position: relative;
	overflow: hidden;
	width:100%;
	display: block;
	padding:5px;
}
.ky_main section.ky_list a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
.ky_main section.ky_list a:hover {
	background: #FFF;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
.ky_main section.ky_list p {
	padding: 0px;
	margin-left: 34%;	/*左の画像とバランスをとって設定する*/
}
/*ボックス内の写真設定*/
.ky_main section.ky_list figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 10px;
}
/*ボックス内のh4タグ設定*/
.ky_main section.ky_list h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #6aacd1;	/*左側の線の幅、線種、色*/
	margin-bottom: 10px;
	color: #6aacd1;	/*文字色*/
}
/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
.ky_main section.ky_list table {
	font-size: 11px;	/*文字サイズ*/
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFF;	/*背景色*/
}
.ky_main section.ky_list table, .ky_main section.ky_list table td, .ky_main section.ky_list table th {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
.ky_main section.ky_list table td, .ky_main section.ky_list table th {
	padding: 0;
	line-height: 1.6;
}
.ky_main section.ky_list table th {
	font-weight: normal;
	background: #e7e2da;
}
.ky_main section.ky_list table td {
	padding: 0px 3px;
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
.ky_sub {
	float:right;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
.ky_sub h2 {
	font-size: 100%;
	padding: 5px 10px;		/*左から、上下、左右への余白*/
	background: #6aa7ff;	/*背景色*/
	color: #FFF;			/*文字色*/
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.ky_sub ul.ky_submenu {
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
.ky_sub .ky_box1 ul.ky_submenu {
	margin-bottom: 0;
}
/*メニュー１個ごとの設定*/
.ky_sub ul.ky_submenu li a {
	border-bottom: 1px solid #ccc;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding: 8px 10px;	/*上下、左右への余白*/
	background: #FFF;	/*背景色*/
	margin-bottom:5px;
}
/*マウスオン時*/
.ky_sub ul.ky_submenu li a:hover {
	background: #c5e3f4;	/*背景色*/
	color: #333;
}
.ky_subtitle1 {
	border-bottom: 1px solid #ccc;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding: 8px 10px;	/*上下、左右への余白*/
	background: #FFF;	/*背景色*/
	margin-bottom:5px;
	font-weight:bold;
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.ky_box1 {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #c9e8ff url(../image/bg.gif);	/*背景色と背景画像の読み込み*/
	border-radius:5px;
	/* box-shadow */
box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-webkit-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-moz-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
}
.ky_box1 p {
	line-height:1.5;
	margin-top:5px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.ky_new {
	margin-bottom: 15px;
}
.ky_new dl {
	overflow-y:scroll;/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
.ky_new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
.ky_new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
.ky_new dd img {
	vertical-align: middle;
}
/*全体
---------------------------------------------------------------------------*/
h1 {
	position:absolute;
	top:0px;
	left:40px;
	font-size:11px;
	color:#baccde;
}
.ky_bg_ye {
	background-color:#ffff00;
	font-weight:bold;
}
.ky_f01 {
	font-size:26px;
	font-weight:bold;
	background-color:#ffff00;
	line-height:1;
	padding:10px 10px;
}
.ky_f02 {
	font-weight:bold;
	background-color:#ffff00;
	line-height:1;
	margin-top:8px;
	margin-bottom:15px;
	padding:8px 10px;
}
.ky_fl_left {
	float:left;
}
.ky_fl_right {
	float:right;
}
.ky_alignright {
	float:right;
	clear:right;
	margin:3px 0 10px 10px;
}
.ky_ggmap {
}
.ky_inner01 {
	padding:15px 20px 40px 20px;
	overflow:hidden;
}
.ky_background {
	position:absolute;
	z-index: -1;
	width:100%;
	height:341px;
	top: 0px;
	left:-0px;
	background: url(../image/backgro.gif) repeat-x;
}
.ky_btn01 ul {
	padding-left: 0;
}
.ky_btn01 li {
	width: 100px;
	padding-left: 10px;
	float: left;
}
.ky_btn01 {
	width: 240px;
	margin: 0px auto;
	overflow: hidden;
}
/*PAGE TOP設定
---------------------------------------------------- */
.ky_pagetop {
	position: fixed;
	bottom: 10px;
	right: 130px;
	margin: 0 auto;
	z-index: 200;
}
.ky_pagetop a {
	width: 8em;
	text-align:center;
	display: inline-block;
	padding: 0px;
	cursor:pointer;
	background-color: #91b422;
	border:1px #67900d solid;
	border-radius: 5px;
	-webkit-box-shadow: 1px 2px 7px #ccc;
	box-shadow: 1px 2px 7px #555555;
	text-decoration:none;
	font-weight:bold;
	color:#fff;
}
.ky_pagetop a:hover {
	background-color: #aece3d;
	color:#000;
}
/*PAGE TOP end
---------------------------------------------------- */
/*FAQ・LINK共通設定
---------------------------------------------------------------------------*/
.ky_faq, .link {
	padding: 0px 15px;
}
/*質問（又はサイト名）の設定*/
.ky_faq dt, .link dt {
	color: #6aacd1;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
	font-size:20px;
}
/*回答（又は説明部分）の設定*/
.ky_faq dd, .link dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}
/*その他
---------------------------------------------------------------------------*/
figcaption {
	font-size: 14px;
}
.ky_c {
	text-align: center;
}
.ky_mb15, .mb1em {
	margin-bottom: 15px;
}
.ky_mb30 {
	margin-bottom: 30px;
}
.ky_mb50 {
	margin-bottom:50px;
}
.ky_pale10 {
	padding-left:10px;
}
/*その他 end
---------------------------------------------------------------------------*/
















/*全体　end
---------------------------------------------------------------------------*/
/*テーブル１
---------------------------------------------------------------------------*/
.ky_ta1 {
	width: 100%;
}
.ky_ta1, .ky_ta1 td, .ky_ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ky_ta1 td {
	padding: 10px;
}
/*テーブル内の左側*/
.ky_ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #dcdcdc;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ky_ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ky_ta1 td .specialbox {
	float: left;
	width: 200px;
	height: 40px;
}
.ky_ws2 {
	width:80%;
	height:100px;
}
/* footer
---------------------------------------------------- */			
.ky_footer {
	position:absolute;
	width:100%;
	height:415px;
	font-size:13px;
	line-height:1.2;
	background: url(../image/footer.gif) repeat-x;
	background-position:center;
	z-index:-2;
	bottom:0px;
}
.ky_footer .ky_footnav {
	z-index:50;
}
.ky_footer-inner {
	margin:0px auto;
	width:1020px;
	padding-top:280px;
}
.ky_footnav {
	padding:15px 0px 0px 0px;
	vertical-align:middle;
	font-size:12px;
}
.ky_footnav li a {
	float: left;
	background: url(../image/ha.gif) no-repeat -5px 0px;
	padding-left: 20px;
	padding-right:20px;
	list-style:none;
	text-decoration:underline;
	cursor:pointer;
}
.ky_com {
	clear:both;
	padding:30px 10px 15px 5px;
	line-height:1.2;
	position:relative;
}
.ky_com p {
	font-size:24px;
	font-weight:bold;
	padding-bottom:3px;
}
.ky_copy {
	position:absolute;
	right:5px;
	bottom:15px;
	margin:0px auto;
	text-align:right;
	padding:0px 0px 0px 0px;
	font-size:11px;
}
/* footer end
---------------------------------------------------- */		


/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"], input[type="button"], input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 5px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*その他 end
---------------------------------------------------------------------------*/


/*画像リンク
---------------------------------------------------- */
.ky_main a:hover, .ky_sub a:hover {
	opacity: 1;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: flash;
	animation-duration: 1s;
	animation-name: flash;
	cursor:pointer;
}
@-webkit-keyframes flash {
 0% {
 opacity: .4;
}
 100% {
 opacity: 1;
}
}
@keyframes flash {
 0% {
 opacity: .4;
}
 100% {
 opacity: 1;
}
}
/*画像リンク　end
---------------------------------------------------- */


/* 基
---------------------------------------------------------------------------*/
/*トップページのスライドショー基
---------------------------------------------------------------------------*/
.mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 20px;
	/* box-shadow */
box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-webkit-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
	-moz-box-shadow:0px 0px 7px 3px rgba(187, 187, 187, 0.68);
}
.mainimg .slide_file {
	display: none;
}
.slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
.slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
/*フッター設定 基
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
/*フッター設定 基　end
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #6aacd1;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.r {
	text-align: right;
}
.sortbox {
	text-align: right;
	margin-bottom: 15px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 10px;
	background: #FFF;
}
.big1 {
	font-size: 130%;
}
.ky_sbtitletop, .ky_sbtitletop1, .ky_sbtitletop2, .ky_sbtitle01, .ky_sbtitle02, .ky_sbtitle03 {
	background-repeat: no-repeat;
	background-position: left center;
	padding: 5px 10px 2px 70px;
	clear: both;
	border-radius: 5px;
	color: #0892c5;
	line-height: 30px;
	font-weight:bold;
	font-size:150%;
	text-shadow: 2px 2px 1px #fff4fc, -2px 2px 1px #fff4fc, 2px -2px 1px #fff4fc, -2px -2px 1px #fff4fc;
	min-height:40px;
	min-height:25px;
}
.ky_sbtitle01 {
	background-image: url(../cssimage/titlebg05.gif);
	background-position: 0px -5px;
	min-height:40px;
}
.ky_photo01 {
	background-color: #fff;
	padding: 5px;
	border: 2px solid #ffde00;
	margin:20px 10px 5px 0px;
	cursor:pointer;
}
#menubar_hdr {
	display: none;
}
/*「おすすめ」表示
---------------------------------------------------------------------------*/
.f01 {
	font-size:12px;
	text-align:right;
	color:#ff6d1b;
}
.toi {
	display:inline;
	list-style:none;
}
img.frame, .gallery img {
	padding:3px;
	box-shadow:0 0 3px #ddd;
}
/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px, 20px);
	-ms-transform: rotate(-45deg) translate(37px, 20px);
	transform: rotate(-45deg) translate(37px, 20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px, 20px);
	-ms-transform: rotate(-45deg) translate(37px, 20px);
	transform: rotate(-45deg) translate(37px, 20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
/*CMS用　オプションマーク（管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px, 10px);
	-ms-transform: rotate(-45deg) translate(37px, 10px);
	transform: rotate(-45deg) translate(37px, 10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px, 10px);
	-ms-transform: rotate(-45deg) translate(37px, 10px);
	transform: rotate(-45deg) translate(37px, 10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
/* message   　-------------------------- */
.ky_msgbox {
	width: 500px;
	border-radius: 10px;
	border: 1px solid #050841;
	letter-spacing: 0.1em;
	clear:both;
	padding:5px;
	box-shadow: 1px 2px 7px #718eb2;
	background: #d0edf8;
	background: -moz-linear-gradient(top, #c9e4f8 1%, #056fc9 5%, #73ceff 42%, #73ceff 42%, #2890cc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #c9e4f8), color-stop(5%, #056fc9), color-stop(42%, #73ceff), color-stop(42%, #73ceff), color-stop(100%, #2890cc));
	background: -webkit-linear-gradient(top, #c9e4f8 1%, #056fc9 5%, #73ceff 42%, #73ceff 42%, #2890cc 100%);
	background: -o-linear-gradient(top, #c9e4f8 1%, #056fc9 5%, #73ceff 42%, #73ceff 42%, #2890cc 100%);
	background: -ms-linear-gradient(top, #c9e4f8 1%, #056fc9 5%, #73ceff 42%, #73ceff 42%, #2890cc 100%);
	background: linear-gradient(to bottom, #c9e4f8 1%, #056fc9 5%, #73ceff 42%, #73ceff 42%, #2890cc 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9e4f8', endColorstr='#2890cc', GradientType=0 );
}
.ky_msgtitle {
	padding: 3px 0px 0px 45px;
	height:35px;
	color: #FFF;
	font-weight:bold;
	font-size:120%;
	border-radius: 10px 10px 0px 0px;
	background-color: #719bbe;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fa5d95), to(#d95181));
	background-image: -webkit-linear-gradient(#fa5d95, #d95181);
	background-image: linear-gradient(#fa5d95, #d95181); /* W3C */
	background: url(../image/mark.gif) no-repeat 10px 5px;
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb76b', endColorstr='#ff7f04', GradientType=0 );
}
.ky_msgtitle_in {
	float:left;
}
.ky_msgclose {
	float:right;
	padding:0px 10px 0px 0px;
}
.ky_msgtext {
	min-height:120px;
	clear:both;
	padding:15px 15px;
	margin:0px 15px 10px 15px;
	background-color:#ffffff;
	box-shadow: 1px 2px 7px #718eb2;
	font-weight:bold;
	font-size:120%;
	color:#F00;
}
.ky_img01 {
	vertical-align:middle;
}
/* message end　-------------------------- */
