﻿/* ////////////////////////////////////////
 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{
}


/*ヘッダー*/
h1#head-l{
	float:left;
	margin-left:5px;
	margin-top:5px;
	padding-bottom: 12px;
}

h1#head-l img{
	width:120px;
}

p#head-r-s{
	float:right;
	font-size: 100%;
	font-weight: bold;
	margin-top:12px;
	margin-right:5px;
	padding-left: 13px;
	background: url(../images/tel.png) no-repeat left center;
}

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

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: 5%;
  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: -25px; }

/*【タイプ-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); }




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

#pagetop img{
  width:80%;
}



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

	div#footer-inner{
		padding-top: 10px;
		padding-bottom: 10px;
	}

	div#footer-inner h3{
		font-weight: bold;
		font-size: 110%;
	}



}




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

div#h1{
	background:#000;
	color:#ABABAB;
	padding:5px;
	font-size:73%;
	line-height:1.5;
}

h1{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
}

/*ヘッダー*/
div#head{
	border-bottom:1px solid #ccc;
	padding:5px;
	width:1000px;
	margin-left:auto;
	margin-right:auto;
}

h1#head-l{
	float:left;
	width:400px;
	margin-top:24px;
	margin-bottom:22px;
	margin-left:25px;
}

h1#head-l img{
	width:194px;
}

h1#head-l{
	float:left;
	margin-top:24px;
	margin-bottom:22px;
	margin-left:0px;
}

p#head-r{
	float:right;
	font-size: 150%;
	font-weight: bold;
	margin-top:44px;
	margin-right:0px;
}

p#head-r span{
	font-weight: normal;
	font-size:80% !important;
	color:#fff;
	background: #009944;
	padding: 5px;
	border-radius: 10px;
}

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

div.navbar-collapse{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
}






/*フッター*/

footer {
    text-align:center;
    padding-top:50px;
	margin-left:auto;
	margin-right:auto;
	z-index:2;
	clear:both;
}

	div#footer-inner p{
		padding-top: 10px;
		padding-bottom: 10px;
	}

	div#footer-inner h3{
		font-weight: bold;
		font-size: 110%;
	}
}



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





}



