<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
    webkit-font-smoothing: antialiased;
    moz-osx-font-smoothing: grayscale;
	color: #151515;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background-color: #ffffff;
}

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;
}
input,textarea,select {
	font-size: 1em;
}
b {
	font-size: 17px;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #424242;	/*リンクテキストの色*/
	text-decoration: underline;
}

a:hover {
	text-decoration: underline;
	color: #75a5f2;			/*マウスオン時の文字色（全体）*/
	text-decoration:underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h1ロゴの設定
---------------------------------------------------------------------------*/
h1 {
	padding: .25em 0 .25em .75em;
	border-left: 6px solid #0101DF;
	font-size: 13px;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 950px;	/*ボックス幅*/
	margin: auto;
	padding: 20px;	/*ボックス内の余白*/
	background-color: #FFF;	/*背景色*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 0px 10px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 10px #FFF;			/*同上*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/

#headerbg { 
background-color: #08088A:	/*背景色*/
width:100%;  
overflow: hidden;
} 
/* ヘッダー*/ 
#header       { 
width: 950px; 
margin-right: auto; 
margin-left: auto; 
} 





/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: auto;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 0px;	/*角丸のサイズ*/
}
#mainimg img {
	border-radius: 0px;	/*角丸のサイズ*/
	vertical-align: bottom;
}
#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;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;	/*メインコンテンツ幅*/
	float: right;	/*右側に回り込み*/
	padding-bottom: 50px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 { 
	background: #7db9e8; /* Old browsers */
	background: -moz-linear-gradient(top, #7db9e8 0%, #2989d8 50%, #207cca 51%, #1e5799 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7db9e8), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#1e5799)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #7db9e8 0%,#2989d8 50%,#207cca 51%,#1e5799 100%); /* W3C */
	margin:0 0 30px 0;
	padding:12px 10px;
	color:#FFF;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	text-shadow:1px 1px 2px #333;
	-webkit-box-shadow:inset 0 0 50px rgba(0,0,0, 0.1);
}
/*mainコンテンツのh3タグの設定*/
h3 {
	position: relative;
	padding-bottom: .5em;
	border-bottom: 4px solid #ccc;
}
h3::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 4px;
	background-color: #3498db;
}

h4 {
	padding: .25em 0 .25em .75em;
	border-left: 6px solid #FAFAFA;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	height: 370px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 1px 6px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 1px 6px #999;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 20px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 15px;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	font-size: 100%;
	color: #5fa003;	/*文字色*/
	border-bottom: 2px dotted #5fa003;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 50px;
}
/*subコンテンツのh2タグの設定*/
#sub h2 {
	background-color: 

	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#8c8c8c));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);	/*同上*/
	background-image: linear-gradient(#cbcbcb, #949494 49%, #8c8c8c 50%);			/*同上*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定。*/
	color: #FFF;	/*文字色*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 10px 0px;	/*上下、左右への余白*/
}

/*メニュー（※サブコンテンツ内）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub #submenu {
	margin-bottom: 15px;	/*ブロックの下にスペースを空ける設定*/
}
/*メニュー１個ごとの設定*/
#sub #submenu ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;	/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#sub #submenu ul li a:hover {
	background-color: #dfeccd;	/*マウスオン時の背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/* フッターを幅いっぱいにする為のボックス*/
#footerbg {
background-color: #BDBDBD;
width:100%;
min-width: 100%;
overflow: hidden;
}


/* フッター*/
#footer        {
width: 950px;
margin-right: auto;
margin-left: auto;
}



/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 20px 0px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 660px;
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #ececed;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #0101DF;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #5882FA;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #5fa003;
}
.color2 {
	color: #FF0033;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
#menubar {
	display: none;
}





.container{
  width: 100%;
  margin: 0 auto;
}
.block{
  display: table;
  margin: 10px 0;
}
.block__element1{
  vertical-align: Top;
  display: table-cell;
  width: 20%;
  padding: 10px;
  /*-border: 1px solid #666; */
}
.block__element2{
  vertical-align: middle;
  display: table-cell;
  width: 80%;
  padding: 10px;
  /*-border: 1px solid #666; */
}









/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*タブレット・スマホ専用メニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#menubar ul li {
	float: left;
	width: 48%;
	margin: 0px 1%;
}
#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar ul li a:hover {
	background-color: #dfeccd;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	width: 100%;
	height: auto;
	margin: 0px 0px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*各ボックス内の画像設定*/
#main section.list article img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像幅*/
	height: auto;
	margin-right: 20px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
}

/*その他
---------------------------------------------------------------------------*/
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){
img { float : none ; }
/*全体の設定
---------------------------------------------------------------------------*/
body {
	background: url(none);
}

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {

}


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	padding: 5px;	/*ボックス内の余白*/
	border-radius: 0px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 0px;
}

/*タブレット・スマホ専用メニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#menubar ul li {
	float: none;
	width: 100%;
}
#menubar ul li a {
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	display: block;
	border-bottom: 2px dotted #8c8c8c;	/*下線の幅、線種、色*/
	padding: 5px 0px;			/*上下、左右への余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
#menubar ul li a:hover {
	background-color: #dfeccd;	/*マウスオン時の背景色*/
}
/*最後のメニューの設定*/
#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh1タグの設定*/

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;
}

/*gallery.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	width: 96%;		/*ボックスの幅*/
	height: auto;	/*ボックスの高さ*/
	float: none;
	margin: 0px auto 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.list article img {
	width: 100%;	/*ボックスの幅*/
	height: auto;	/*ボックスの高さ*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	background-color:#848484;
	border-top: 1px solid #CCC;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background:url(../images/bg_h2.png) repeat 0 0; /*メインとなる背景画像*/
	border:1px solid #E0E0E0; /*周辺を囲む線色*/
	border-top:3px solid #C0C0C0; /*上部の線*/
	font-size:14px; /*文字サイズ*/
	margin:0 0 15px 0;
	padding: 8px 10px;
	clear:both;
	font-weight:bold;
}
section#new h2.close {
	background:url(../images/bg_h2.png) repeat 0 0; /*メインとなる背景画像*/
	border:1px solid #E0E0E0; /*周辺を囲む線色*/
	border-top:3px solid #C0C0C0; /*上部の線*/
	font-size:14px; /*文字サイズ*/
	margin:0 0 15px 0;
	padding: 8px 10px;
	clear:both;
	font-weight:bold;
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	margin: 0px auto 1em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}


/*その他
---------------------------------------------------------------------------*/
#sub #submenu {
	display: none;
}
#menubar {
	display: block;
}
/*メニュー折りたたみ設定*/
#top #menubar_ {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
	z-index: 10;
}

}

/*テーブル１
-----------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 th, .ta1 td {
	border: 1px solid #CCC;
}
.ta1 th{
	width: 180px%;
	padding: 10px;
	text-align: center;
	background: #ececed;
}
.ta1 td{
	padding: 10px;
}

/*ボタン１
-----------------------------------------------------------------*/

#button { 
width:300px; 
background:#ffffff;
color:#151515;
font-size:28px; 
font-weight:500;
text-shadow:0 1px 0px #143352,0 2px 0px #143352;
text-align:center; 
display:block; 
text-decoration:none; 
border:1px solid #225588; 
padding:12px 0 8px 0;  
border-radius:5px;
background:-moz-linear-gradient(rgba(255,255,255,0.5), rgba(230,239,255,1)); 
background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(255,255,255,0.5)), to(rgba(230,239,255,1))); 
box-shadow:1px 2px 2px rgba(0,0,0,0.3), 0px 1px 0px rgba(255,255,255,0.5) inset, 0px -1px 0px rgba(255,255,255,1) inset;
}
a#button:hover { 
  background:-moz-linear-gradient(rgba(77,93,255,0.2), rgba(77,93,255,0.6)); 
  background:-webkit-gradient(linear, 100% 0%, 100% 100%, from(rgba(77,93,255,0.2)), to(rgba(77,93,255,0.6))); 
}


/*ボックス
-----------------------------------------------------------------*/
#contents section.list1 {
	border: 1px solid #CCC;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 15px;
	background: linear-gradient(#FFF, #e3e3e3);
	box-shadow: 0px 2px 5px #CCC;
	overflow: hidden;
}
#contents section.list1 h3 {
        padding: 2px 0px 10px;
        font-size: 100%;
        border-bottom: 1px solid #ccc;
        border-left: 3px solid #000;
        margin-bottom: 20px
}


/*施術メニューリンク
-----------------------------------------------------------------*/

.relative {
    position: relative;
}
.absolute {
    position: absolute;
    bottom: 15px;
    color: #FFFFFF;
    background: rgba(0,0,0,.6);
    width: 100%;
    max-width: 450px;
    padding: 1em 0;
}
.absolute p {
    margin: 0;
    padding: 0 0.8em;
    font-size: 160%;
    text-align: center;
}


.absolute a {
	color: #FFFFFF;	/*リンクテキストの色*/
	text-decoration: underline;
}

.absolute a:hover {
	text-decoration: underline;
	color: #75a5f2;			/*マウスオン時の文字色（全体）*/
	text-decoration:underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*施術テーブル
-----------------------------------------------------------------*/
table.type09 {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;

}
table.type09 thead th {
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	color: #369;
	border-bottom: 3px solid #036;
}
table.type09 tbody th {
	width: 150px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	background: #f3f6f7;
}
table.type09 td {
	width: 350px;
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}table.type09 {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;

}
table.type09 thead th {
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	color: #369;
	border-bottom: 3px solid #036;
}
table.type09 tbody th {
	width: 500px;
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	background: #f3f6f7;
}
table.type09 td {
	width: 900px;
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}

/*フッターメニュー
-----------------------------------------------------------------*/

.box_left {
    color: #FFFFFF;
    width:400px;
    height:400px;
    margin-left:0px;
    float:left;
    background-color:#BDBDBD;
}
.box_wrap {
    width:1200px;
    height:auto;
    border:0px solid #000;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}



/*ヘッダーメニュー
-----------------------------------------------------------------*/

#menu {
	width: 100%;
	max-width: 100%;
	margin: 0px 0px 0px;
	padding: 0px 0px 0px;
}
#menu li{
	display: block;
	float: left;
	width: 12.5%;
	margin: 0px 0px;
	padding: 0;
}
#menu li a {
	display: block;
	padding: 10px 0px 10px;
	background-color: #08088A;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-right:1px solid #fff;
}
#menu li:last-child a{
	border: none;
}
#menu li a:hover{
	background: #8181F7;
}
#toggle {
	display: none;
}

/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	#menu li {
		width: 25%;
		border-bottom: 1px solid #fff;
	}
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
	#menu {
		display: none;
	}
	#menu li {
		width: 100%;
	}
	#toggle {
		display: block;
		position: relative;
		width: 100%;
		background: #08088A;
	}
	#toggle a{
		display: block;
		position: relative;
		padding: 20px 0 20px;
		border-bottom: 1px solid #fff;
		color:#FFF;
		text-align: center;
		text-decoration: none;
	}
	#toggle:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 30px;
		margin-top: -15px;
		background: #FFF;
	}
	#toggle a:before, #toggle a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 6px;
		background: #08088A;
	}
	#toggle a:before {
		margin-top:-9px;
	}
	#toggle a:after {
		margin-top: 3px;
	}
}


/*スマホで消したいとき
-----------------------------------------------------------------*/

@media screen and (max-width: 768px){
.spNone {       display:none;}
}

/*snsボタン横並び
-----------------------------------------------------------------*/
.snsb {
	overflow: hidden;
}
.snsb li {
	float: left;
	margin-right: 4px;
}
.snsb iframe {
	margin: 0 !important;
}


/*ヘッダーサイズ変動させる
-----------------------------------------------------------------*/
p.resizeimage img { width: 100vw; }


#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 2px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;
}
 
#footerFloatingMenu img {
    max-width: 99%;
}





/*
-----------------------------------------------------------------*/

.box_sample01 {
 border: 1px solid #BDBDBD;
 padding: 5px;
 margin: 0px 0px 10px 0px;
 width: 100%;
}



/*ぱんくず
-----------------------------------------------------------------*/
/* [ul] */
.syncer-brcb {
	overflow: hidden ;
	list-style-type: none ;
}

/* [li] */
.syncer-brcb li {
	float: left ;
	font-weight: 700 ;
}

/* [&gt;] */
.syncer-brcb li:after {
	content: "&gt;" ;
	padding: 0 8px ;
	font-weight: 400 ;
}

/* 一番最後の[li] */
.syncer-brcb li:last-child:after {
	content: none ;
}

-----------------------------------------------------------------*/

.snsb2 ul {
  font-size: 0;
  max-width: 100%;
}
.snsb2 li {
  display: inline-block;
  width: 49%;
}  
-----------------------------------------------------------------*/
.box_sample02 {
 border: 1px solid #BDBDBD;
 padding: 5px;
 margin: 0px 0px 10px 0px;
}


/*コンテンツ
-----------------------------------------------------------------*/
.contents ul {
  font-size: 0;
}
.contents li {
  color: #2E2EFE;
  background-color: #FFFFFF;
  display: inline-block;
  font-size: 20px;
  width: 49%;
  text-align: center;
  font-weight: 700;
}  

/*コンテンツ2
-----------------------------------------------------------------*/
.contents2 ul {
  font-size: 0;
}
.contents2 li {
  display: inline-block;
  font-size: 19px;
  width: 90%;
  text-align: center;;
  color: #FFFFFF;
  list-style-type : none;
  padding:5px 10px;
  background-color: #2E2EFE;
  font-weight: bold;
}

/*コンテンツ3
-----------------------------------------------------------------*/
.contents3 ul {
  font-size: 0;
}
.contents3 li {
  display: inline-block;
  font-size: 14px;
  width: 100%;
  text-align: center;
}  

/*コンテンツ4
-----------------------------------------------------------------*/
.contents4 ul {
  font-size: 0;
}
.contents4 li {
  display: inline-block;
  font-size: 14px;
  width: 100%;
  text-align: center;;
  color: #FFFFFF;
  list-style-type : none;
  padding:5px 10px;
  background-color: #2E2EFE;
  border-right:1px solid #fff;
  border-bottom:1px solid #fff;
}
.contents4 li a {
	color: #FFFFFF;	/*リンクテキストの色*/
	text-decoration: underline;
	display: block;
}

.contents4 li a:hover {
	text-decoration: underline;
	color: #75a5f2;			/*マウスオン時の文字色（全体）*/
	text-decoration:underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテンツ5
-----------------------------------------------------------------*/
.contents5 ul {
  font-size: 0;
}
.contents5 li {
  width: 100%;
}  


/*フッターメニューカラー
-----------------------------------------------------------------*/

.color li a {
	color: #FFFFFF;	/*リンクテキストの色*/
	text-decoration: underline;
}

.color li a:hover {
	text-decoration: underline;
	color: #75a5f2;			/*マウスオン時の文字色（全体）*/
	text-decoration:underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h1
-----------------------------------------------------------------*/
.headding08 {
	background: #1d8ade; 
	margin:0 0 30px 0;
	padding:12px 10px;
	color:#FFF;
	text-shadow:1px 1px 2px #333;
	position:relative;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-left:1px solid #036;
	border-top:1px solid #036;
	box-shadow:inset 1px 1px 4px #036;
	}
 
.headding08:before {
	content: ' ';
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	left: 14px;
	bottom: -27px;
	background: transparent;
	border-color: #1d8ade transparent transparent transparent ;
	border-style:solid;
	border-width:15px;
	}

/*h2
-----------------------------------------------------------------*/
.headding07 {
	background: #1d8ade; /* Old browsers */
	background: -moz-linear-gradient(left, #1d8ade 0%, #53a2e2 50%, #1d8ade 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#1d8ade), color-stop(50%,#53a2e2), color-stop(100%,#1d8ade)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #1d8ade 0%,#53a2e2 50%,#1d8ade 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #1d8ade 0%,#53a2e2 50%,#1d8ade 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(left, #1d8ade 0%,#53a2e2 50%,#1d8ade 100%); /* IE10+ */
	background: linear-gradient(left, #1d8ade 0%,#53a2e2 50%,#1d8ade 100%); /* W3C */
	margin:0 -36px 30px -36px;
	padding:12px 10px;
	color:#FFF;
	text-shadow:1px 1px 2px #333;
	box-shadow:inset 0 0 50px rgba(0,0,0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.3);
	position:relative;
	}
 
.headding07:before,
.headding07:after {
	content: ' ';
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	right: -14px;
	bottom: -15px;
	background: transparent;
	border-color: transparent  transparent transparent #666;
	border-style:solid;
	border-width:15px;
	}
.headding07:after {
	left: -14px;
	bottom: -15px;
	right:auto;
	border-color: transparent #666 transparent transparent;
	}


/*帯
-----------------------------------------------------------------*/
.headding02 {
	margin:0 0 30px 0;
	padding:12px 10px;
	border:1px solid #1871B8;
	background: #1D8ADE;
	color:#FFF;
	box-shadow:inset 1px 1px 0 rgba(255,255,255,0.4)
	}

/*h3
-----------------------------------------------------------------*/
.button2 {
	display: inline-block;
	width: 400px;
	height: 100px;
	text-align: center;
	text-decoration: none;
	line-height: 100px;
	outline: none;
	overflow: hidden;
	box-shadow:2px 2px 2px #555;
	border-radius:5px;
	
}
.button2::before,
.button2::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button2,
.button2::before,
.button2::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button2 {
	position: relative;
	z-index: 2;
	background-color: #FA8258;
	border: 2px solid #FA8258;
	color: #fff;
	line-height: 100px;
}
.button2:hover {
	background-color: #fff;
	border-color: #59b1eb;
	color: #59b1eb;
}
.button2::before,
.button2::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #FA8258;
}
.button2::before {
	right: 0;
}
.button2::after {
	left: 0;
}
.button2:hover::before,
.button2:hover::after {
	width: 0;
	background-color: #59b1eb;
}




/*枠で囲む
-----------------------------------------------------------------*/
.border1{
	border-style: solid ;
	border-width: 5px;
	padding: 20px 10px 10px 20px;
	border-color: red;
	background-color: #FFFFFF; 
	width: 360px;
	text-align:center;
	margin-left:auto;margin-right:auto;
	font-weight:900;
	border-radius: 10px;
}

/*下
-----------------------------------------------------------------*/
.sita{
	width: 100px;
	height: 100px;
	display: block;
 	margin-left: auto;
	margin-right: auto;

}

/*下
-----------------------------------------------------------------*/

.border2{
	border-style: solid ;
	border-width: 1px;
	padding: 10px 5px 10px 20px;
	border-color: #000000;
	background-color: #FAFAFA; 
	width: 80%;
	text-align:center;
	margin-left:auto;margin-right:auto;
	font-weight:600;
	border-radius: 10px;
}


/*グリッド
-----------------------------------------------------------------*/
.grid {
	width: 100%;
}



/*ボックス
-----------------------------------------------------------------*/
.sikaku li {
    width:290px;
    height: 50px;
    line-height: 50px;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px 10px 10px 10px;
    color:#fff;
    background-color:#FA8258;
    border-radius:5px;
    margin-top: 1em;
    display: inline-block;
    font-size: 15px;    
}

/*グリッド2
-----------------------------------------------------------------*/
.grid2 {
	width: 100%;
}

/*ボックス2
-----------------------------------------------------------------*/
.sikaku2 li {
    width:111px;
    height: 50px;
    line-height: 50px;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:10px 10px 10px 10px;
    color:#fff;
    background-color:#FA8258;
    border-radius:5px;
    margin-top: 1em;
    display: inline-block;
    font-size: 13px;    
}


}

/*ボックス3
-----------------------------------------------------------------*/
.sikaku3 ul {
  
}
.sikaku3 li {
	width:40%;
	padding:5px 5px 5px 5px;
	margin: 2px;
	font-size: 15px;
	font-weight: normal;
	color:#151515;
}

.sikaku3 a {
	font-size: 15px;
	font-weight: normal;
}


/*ボックス3
-----------------------------------------------------------------*/
.sikaku5 ul {
  
}
.sikaku5 li {
	width:40%;
	background-color:#5882FA;
	padding:5px 5px 5px 5px;
	margin: 2px;
	border-radius:5px;
	box-shadow:2px 2px 2px #555;
}

.sikaku5 a {
	color:#fff;
	font-size: 18px;
}
.sikaku5 li a:hover {
	background-color: #fff;
	border-color: #59b1eb;
	color: #59b1eb;


/*3
-----------------------------------------------------------------*/
.border3{
	border-style: solid ;
	border-width: 1px;
	padding: 20px 10px 10px 20px;
	border-color: red;
	background-color: #FFFFFF; 
	width: 360px;
	text-align:center;
	margin-left:auto;margin-right:auto;
	font-weight:900;
	border-radius: 10px;
}


/*3
-----------------------------------------------------------------*/
.defaultlist
 .defaultlist li{
	padding:0px;
	margin:0px;
}
 
.defaultlist li{
	list-style-type:none !important;
	list-style-image:none !important;
	margin: 5px 0px 5px 0px !important;
}
 


a img{
  opacity: 1;
  transition: 0.3s;
}
a:hover img{
  opacity: .5;
}



.case-title {/*親div*/
  position: relative;/*相対配置*/
  }

.case-title p {
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  top: 0;
  left: 0;
  }

.case-title img {
  width: 100%;
  }</pre></body></html>