<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ////////////////////////////////////////
 Web Font 
//////////////////////////////////////// */

/* IE */
@font-face {
	font-family: iconfont;
	src: url(CONDENSEicon.eot);
}
/* Firefox, Opera, Safari */
@font-face {
	font-family: iconfont;
	src: url(CONDENSEicon.otf) format("truetype");
}

.icon {
	font-family: iconfont;
	font-weight: normal;
}

.icon-list:before { /*要素の直前に擬似要素（WEBフォント）を追加する　（ちなみにafterとすれば直後となる）*/
	/*右記URLよりコピペで指定すれば表示できるhttp://icon.condense-c.com/*/
	content: "ˇ";
	/*
	以下URLより文字コードを16進コード文字列に変換しても表示できる
	　※その場合\が先頭につくのと空いてる数は0を追加して5桁にする
	http://homepage1.nifty.com/mstak/Computer/JavaScript/program-form2.html
	content: "\002c7";
	*/
}

/*////////////////////////////////////////
共通
////////////////////////////////////////*/

/*--------------
マウスオーバー時のみ画像透明化
--------------*/
a:hover img{
	opacity:0.7;
	-webkit-transition:opacity 0.2s linear;
}

body{
	background:#fff;
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  cursor: pointer;
  z-index: 9999; /*すべたの要素の一番上に表示するためレイヤーを9999とした*/
}

/*--------------
クリアフィックス
--------------*/
/* For modern browsers用 */
.cf:after{
	content: "";
	display: block;
	clear: both;
}

/* For IE 6/7用 */
.cf { zoom: 1; }


/* ////////////////////////////////////////
スマートフォン向けのスタイル：479px以下 
////////////////////////////////////////*/
@media screen and (max-width: 479px) {



/*ヘッダー*/
h1{
	float:left;
	margin-left:5px;
	margin-top:5px;
	margin-bottom: 10px;
}

h1 img{
	width:180px;
}

p#head-r-s{
	float:right;
	font-family: 'Libre Baskerville', serif;
	font-size:130%;
	color:#696b6a;
	margin-top:8px;
	margin-right:5px;
}
p#head-r-s a{	
	color:#696b6a;
}

p#head-r-s span img{
	padding-bottom: 2px;
}

p#head-r{
	display:none;
}

div.navbar-header{
	border:1px solid #ccc;
	padding-top:0px;
	width:99%; /*←widthを100%にしてしまうと画面が右にズレる*/
}



/*ハンバーガーメニュー共通*/
.icon-animation {
  z-index:9999;	 /*一番上に表示するためレイヤーを9999とした*/
  width: 100%;
  height:40px;
  float: right;
  display: block;
  position: relative; }
  .icon-animation span {
    width: 30px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -13px; }

/*【タイプ-01】ハンバーガーメニュー*/
.type-1 span {
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg); }

.type-1 .top {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px); }

.type-1 .bottom {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px); }

.type-1.is-open .middle {
  background: rgba(255, 255, 255, 0); }

.type-1.is-open .top {
  -webkit-transform: rotate(-45deg) translateY(0px);
      -ms-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px); }

.type-1.is-open .bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
      -ms-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px); }


ul.nav-pc{
	display: none;
}

/*ページトップ*/
#pagetop{
  right:0px;
}

#pagetop img{
  width:80%;
}



/*フッター*/
footer {
    text-align:center;
    margin-top:50px;
	margin-bottom: 60px;
	/*領域外を非表示*/
	width:100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

footer ul{
		width:100%;
		margin-left: auto;
		margin-right: auto;

	}

footer ul li{
		width:50%;
		float: left;
		height: 62px;
	border-bottom: 1px solid #ccc;
	}
	
footer ul li a{
		display: block;
		height: 62px;
		line-height: 62px;
		text-align: center;
		color:#fff;
	}
footer ul li:nth-child(even) a{ /*偶数番目の要素にスタイルを適用*/
		border-left: 1px solid #ccc;
	}
footer ul li:first-child{ /*1番目の要素にスタイルを適用*/
		border-top: 1px solid #ccc;
	}
footer ul li:nth-child(2){ /*2番目の要素にスタイルを適用*/
		border-top: 1px solid #ccc;
	}

	footer ul li#head-r{
		display: none;
	}
	footer ul li#head-r-s{
		width:100%;
	}


	div#tel-link{
		background: #000;
		width:100%;
		position: fixed;
	    bottom:0;
		padding: 15px;
		z-index: 9999;	
	}
	div#tel-link a{
		display: block;
		width:105px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		color: #fff;
		background: url(../images/tel.png) no-repeat left center;
	}
	
	
}




/*////////////////////////////////////////
 タブレット向けのスタイル：481px ～ 768px 
////////////////////////////////////////*/
@media only screen and (min-width: 481px) {



	
div#head-cnt{
	position: fixed;
    top:0;
	z-index: 9999;	
	width:100%;
	height: 70px;
	background: #fff;
	background-color:rgba(255,255,255,0.8);
	}
/*ヘッダー*/
div#head{
    left:calc(50% - 1000px/2);
	padding-top: 25px;
	margin-bottom: 15px;
	}
	
	
h1{
	margin-left: 5px;
	margin-bottom:10px;

}

h1 img{
	width:285px;
}

ul.nav-pc{
	float:left;
	margin-top: 5px;
}
	
ul.nav-pc li{
	float: left;
	margin-right: 20px;
	margin-left: 20px;
}
ul.nav-pc li a:hover{
	border-bottom: 5px solid #999;
	padding-bottom: 5px;
}
	
ul.nav{
	display: none;
}
	
p#head-r{
	font-family: 'Libre Baskerville', serif;
	font-size:150%;
	color:#696b6a;
	margin-top: 5px;
}

ul.nav-pc li a{
	color:#696b6a;
}
	
p#head-r span img{
	padding-bottom: 2px;
}

p#head-r-s{
	display:none;
}








/*フッター*/

footer {
	width:100%;
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
    padding-top:0px;
}

	footer ul li{
		float: left;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 15px;
	}
	
	footer ul li#head-r{
		color:#696b6a!important;		
	}

	footer ul li a{
		color:#696b6a!important;
	}
	
	footer ul li#head-r-s{
		display: none;
	}

	footer p{
		text-align: center;
		margin-top: 25px;
		margin-bottom: 15px;
	}
	
	div#tel-link{
		display: none;
	}
	
	
}



/*////////////////////////////////////////
PC向けのスタイル：769px～960px 
////////////////////////////////////////*/
@media only screen and (min-width: 769px) {

/*ヘッダー*/
div#head{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
	padding-top: 25px;
	margin-bottom: 0px;
}
h1{
	margin-left: 0px;
	margin-right:35px;
	margin-bottom:0px;
	float:left;
}
p#head-r{
	float:right;
}

/*フッター*/

footer {
	width:1000px;
}

	footer ul li{
		margin-left: 30px;
		margin-right: 30px;
	}




</pre></body></html>