@charset "utf-8";

/* ------------------------------------------------------------------ */
/* サイト使用カラーコード                                             */
/*                                                                    */
/* 2015/12/28迄の設定                                                 */
/* 濃い緑: #008844 rgb(0, 136, 68)                                    */
/* 薄い緑: #8abc60 rgb(138, 188, 96)                                  */
/*                                                                    */
/* 2015/12/28～の設定                                                 */
/* 濃い緑: #339933 rgb(51, 153, 51)                                   */
/* 薄い緑: #669933 rgb(102, 152, 51)                                  */
/*                                                                    */
/* 送信ボタンのbox-shadow部分・プロフィールのバックカラー・           */
/* 事務所概要のバックカラーのみ2015/12/28迄の濃い緑の色を継続使用     */
/* 濃い緑: #008844 rgb(0, 136, 68)                                    */
/*                                                                    */
/*                                                                    */
/* 濃いグレー: #bfbfbf rgb(191, 191, 191)                             */
/* 薄いグレー: #fafafa rgb(250, 250, 250)                             */
/*                                                                    */
/* 屋号の由来部分の背景色                                             */
/* プロフィール箇所のアイコン背景色と文字の色                         */
/* 事務所概要箇所のアイコン背景色と文字の色                           */
/* 薄いグレー: #f5f5f5 rgb(245, 245, 245)                             */
/*                                                                    */
/*                                                                    */
/*                                                                    */
/* 文字カラーのベースをbootstrapデフォルトより変更                    */
/* bootstrap:#333333  →  original:#696969 rgb(105, 105, 105)         */
/* ------------------------------------------------------------------ */

body {
	font-size: 18px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;*/
	color: #696969;
}


/*---------------------------------------------------------------------------------*/
/* 各見出し共通の書式設定（アイコン並びに見出し文字）・・・・・※１                */
/*---------------------------------------------------------------------------------*/
.heading {
	text-align: center;
	margin-bottom: 50px;
}

.heading h2 {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	font-size: 28px;
	line-height: 1.0;
	font-weight: 600;
	display: inline-block;
	vertical-align: 1px;
}

/* アイコン設置 */
.heading .iconimage {
	border: none;
	font-size: 34px;
	margin: 0 18px 0 0;
	color: #ffffff;
}

/* アイコン周りに枠を設置 */
.heading .iconimage {
	padding: 24px 20px 20px 20px;
	border-radius: 10px;
	background-color: #669933;
}

/* アイコン周りの枠を円形に変更 */
.heading .iconimage {
	height: 80px;
	width: 80px;
	border-radius: 40px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/* ------------------------------------------------------------------ */
/* headerinfo(ヘッダー上部に情報を表示する)                           */
/* ------------------------------------------------------------------ */
.headerinfo {
	background-color: #669933;
}

.headerinfo .h5 {
	font-size: 12px;
	line-height: 1.0;
	color: #fafafa;
	margin-top: 5px;
	margin-bottom: 5px;
}

/* ------------------------------------------------------------------ */
/* ナビゲーションメニュー                                             */
/* ------------------------------------------------------------------ */
.menu {
	background-color: #fafafa;
	border: none;
	/* border-top: solid 5px #339933; 2016/1/5コメントアウト*/  /* ナビゲーションの上部に線の装飾を設定 */
	border-radius: 0;	
	padding-top: 20px;  /* ナビゲーションメニューの上部のマージンを変更 */
	padding-bottom: 10px;
}

/* ナビゲーションメニューとカルーセルの間のスペースを削除 margin-bottom:20px → margin-bottom:0*/
.navbar {
	margin-bottom: 0;
}

/* ナビゲーションメニュー　フォントサイズの変更 bootstrapのセレクタを変更 */
.navbar-nav>li>a {
	font-size: 18px;
}

/* 画面サイズが1000px以上の場合に、トグルメニュー非表示 bootstrapのセレクタを変更 */
/* bootstrap デフォルトでは画面サイズが768px以上でトグルメニュー非表示 */
/* bootstrap.cssのnavbar関連のセレクタ箇所の@mediaを1000px以上に直接修正することで対応 */
/* style.css上で変更しても表示・非表示の切り替えがうまくいかないため */


/* ナビゲーションメニュー　文字カラー設定 */
.navbar-inverse .navbar-nav > li > a {
	color: #669933;
}

.navbar-inverse .navbar-nav > li > a:hover {
	background-color: #669933;
}

/*** start *** 2016/09/28 .navbar-brand ロゴ画像　高解像対応のため コメントアウト  ***/
/* riggboロゴの位置設定*/
/*
.navbar-brand {
	padding: 0 0 0 0;
}
*/
/*** end *** 2016/09/28 .navbar-brand ロゴ画像　高解像対応のため コメントアウト  ***/

/*** start *** 2016/09/28 .navbar-brand ロゴ画像　高解像対応のため 追加  ***/
.navbar-brand {
	background: url("../img/logo_horizontal.png") no-repeat left center;
	background-size: contain;
	width: 200px;
}
/*** end *** 2016/09/28 .navbar-brand ロゴ画像　高解像対応のため 追加  ***/

.navbar>.container .navbar-brand {
	margin-left: 0;
	margin-bottom: 10px;
}

/* トグルメニューオープン時のメニューバーとメニューの間の区切り線 */
.menu .navbar-collapse {
	border-top-color: #669933;
	border-top-style: dashed;
}

/* トグルメニューの四角い箱の外側のボーダーカラー（濃緑） */
.menu .navbar-toggle {
	border-color: #669933;
}

/* トグルメニューにアイコンが置かれた時・フォーカスが当たった時に、背景色を黄緑色に変更する */
.menu .navbar-toggle:hover,
.menu .navbar-toggle:focus {
	background-color: #669933;
}

/* 三本線の背景色を濃緑に変える */
.navbar-toggle {
	background-color: #669933;
}

/* 三本線の色を白色に変える */
.navbar-inverse .navbar-toggle .icon-bar {
	background-color: #ffffff;
}


/* ------------------------------------------------------------------ */
/* カルーセル                                                         */
/* ------------------------------------------------------------------ */

/* カルーセル　スライダー画像を画面横幅いっぱいに表示させる */
.carousel-inner > .item > img {
	width: 100%;
}

.carousel-caption {
	left: 15%;
	bottom: 10px;
	text-align: left;
	color: #696969;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.carousel-caption h3 {
	font-size: 34px;
}

/* カルーセル上に表示されている文字のバランスが1000px以下の画面で悪くなる為、表示を調整 */
@media (max-width: 1000px) {
	.carousel-inner > .item > img {
		min-width: 360px;
		min-height: 200px;
	}
	
	.carousel-control {
		width: 20px;
	}
	
	.carousel-caption {
		left: 4%;
		bottom: 0;
	}
	
	.carousel-indicators {
		bottom: 0;
	}
	
	.carousel-caption h3 {
		font-size: 28px;
	}
	
	.carousel-caption p {
		font-size: 12px;
	}
}

/* カルーセル上に表示されている文字のバランスが680px以下の画面でさらに悪くなる為、表示を調整 */
@media (max-width: 680px) {
	.carousel-caption h3 {
		font-size: 20px;
	}
}


/* ------------------------------------------------------------------ */
/* 活動ポリシー                                                       */
/* ------------------------------------------------------------------ */
#policy {
	padding: 50px 0 50px 0;
	background-image: url(../img/backimg.png);
	background-repeat: repeat-x repeat-y;
}

.business ul,
.business ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.business ul li {
	position: relative;
	font-size: 20px;
	margin-bottom: 20px;
}

.business ul li:before {
	position: absolute;
	color: #339933;
	content: '\f101';
	font-family: 'FontAwesome';
	font-size: 24px;
	line-height: 1.0;
}

.business p {
	margin-left: 30px;
}

/* スローガン */
.slogan-heading {
	margin-top: 50px;
	margin-bottom: 30px;
}

.slogan img {
	margin: 0 auto 20px auto;
}

/*** start *** 2016/09/28 .img-responsive ロゴ画像　高解像対応のため 追加  ***/
.slogan .img-responsive {
	width: 350px;
}
/*** end *** 2016/09/28 .img-responsive ロゴ画像　高解像対応のため 追加  ***/

.slogan p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.6;
	padding-top: 9px;
}

/* 画面サイズが1200px以上の時 画像の右側にスローガンの意味を表示*/
@media (min-width: 1200px) {
  .slogan img {
	  float: left;
	  max-width: 50%;
	  height: auto;
	  margin-right: 30px;
  }
  
  .slogan:after {
	  content: "";
	  display: block;
	  clear: both;
  }
}

/* ------------------------------------------------------------------ */
/* プロフィール                                                       */
/* ------------------------------------------------------------------ */

/* #669933 rgb(102, 152, 51) */

#profile {
	background-color: rgba(0, 136, 68, 1.0);
	padding: 50px 0 50px 0;
}

/* アイコンの色変更（共通書式設定[※１]からの変更）　白→濃いグリーン　背景色変更　薄いグリーン→白(#f5f5f5) */
.heading .profileimg {
	color: #339933;
	background-color: #f5f5f5;
}

#profile h2,
#profile p {
	/* color: #ffffff; */
	color: #f5f5f5;
}


/* ------------------------------------------------------------------ */
/* 屋号の由来                                                         */
/* ------------------------------------------------------------------ */
/* 屋号・ロゴ　共通 */
#source {
	background-color: #f5f5f5;
	padding: 50px 0 50px 0;
}

#source .source-meaning h3 {
	padding: 5px 0 5px 12px;
	border-left: solid 8px #669933;
	border-bottom: solid 1px #669933;
	font-weight: 600;
	color: #339933;
}

#source .source-meaning dl {
	margin-top: 20px;
	border: solid 1px #bfbfbf;
}

#source .source-meaning dl dt {
	border-bottom: solid 1px #bfbfbf;
	font-size: 28px;
	padding: 10px 0 10px 0;
}

/* 屋号 */
#source .source-meaning .meaning-detail {
	text-align: center;
}

#source .source-meaning .meaning-detail dt {
	padding: 15px 0 15px 0;
}

#source .source-meaning .meaning-detail dd {
	padding-top: 10px;
}

#source .source-meaning .meaning-detail dd:last-of-type {
	padding-bottom: 10px;
}

/* ロゴ */
#source .source-meaning .logo-detail img {
	margin: 0 auto 0 auto;
}

/*** start *** 2016/09/28 .img-responsive ロゴ画像　高解像対応のため 追加  ***/
#source .source-meaning .logo-detail img {
	width: 200px;
}
/*** end *** 2016/09/28 .img-responsive ロゴ画像　高解像対応のため 追加  ***/

#source .source-meaning .logo-detail dd {
	padding-top: 10px;
}

#source .source-meaning .logo-detail dd:first-of-type,
#source .source-meaning .logo-detail dd:nth-of-type(4) {
	text-align: center;
}

#source .source-meaning .logo-detail dd:last-of-type {
	padding-bottom: 5px;
}



/* ------------------------------------------------------------------ */
/* 事業所概要                                                         */
/* ------------------------------------------------------------------ */
#company {
	background-color: rgba(0, 136, 68, 1.0);
	padding: 50px 0 30px 0;
}

/* アイコンの色変更（共通書式設定[※１]からの変更）　白→濃いグリーン　背景色変更　薄いグリーン→白(#f5f5f5) */
.heading .companyimg {
	color: #339933;
	background-color: #f5f5f5;
}

#company h2,
#company dt,
#company dd {
	color: #f5f5f5;
}

#company .companyinfo {
	list-style: none;
}
#company .companyinfo dl dt {
	width: 30%;
	float: left;
}

#company .companyinfo dl dd {
	width:70%;
	float: left;
}

#company .companyinfo dl:after {
	content: "";
	display: block;
	clear: both;
}


/* ------------------------------------------------------------------ */
/* お問い合わせフォーム                                               */
/* ------------------------------------------------------------------ */
/* お問い合わせフォーム　上下マージン */
#contact {
	padding: 50px 0 80px 0;
}

/* 送信ボタンの色　bootstrap cssからの変更 */
.btn-default {
	color: #ffffff;
	-webkit-box-shadow: rgb(0, 136, 68) 0px 3px;
	-moz-box-shadow: rgb(0, 136, 68) 0px 3px;
	box-shadow: rgb(0, 136, 68) 0px 3px;
	
	
	background-color: rgba(102, 152, 51, 1.0);
	border-color: rgba(102, 152, 51, 1.0);
}

/* 送信ボタンの色(hover,focus,active)　bootstrap cssからの変更 */
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	color: #ffffff;
	background-color: rgba(102, 152, 51, 0.8);
	border-color: rgba(102, 152, 51, 0.8);
}

/* 送信ボタンの幅を「お問い合わせ内容」のテキストエリアと同じ幅に設定　bootstrap cssからの変更 */
.btn {
	width: 100%;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
}



/* ------------------------------------------------------------------ */
/* フッター                                                           */
/* ------------------------------------------------------------------ */
.footer {
	padding: 40px 20px 30px 20px;
	background-color: #696969;
	text-align: center;
}

.footer p {
	color: #ffffff;
	margin: 0 0 3px 0;
	font-size: 12px;
	line-height: 1.4;
}

/* Page Topボタン */
.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
}

.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	background-color: #bfbfbf;
	text-align: center;
	color: #fafafa;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
}

/********************************************************************/
/*  お問い合わせメール送信後のオーバーレイ画面表示の設定            */
/********************************************************************/
#backlayer {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(102, 152, 51, 0.8);
}

#okoverlay,
#erroverlay {
	position: fixed;
	display: none;
	width: 80%;
	text-align: center;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.9);
	z-index: 110;
}

#oktext,
#errtext {
	font-size: 16px;
	color: #696969;
	padding-top: 10px;
	vertical-align: middle;
	font-weight: bold;
}

#okclose,
#errclose {
	background: #669933;
	color: #ffffff;
	width: 80px;
	margin: 10px auto 0 auto;
	text-align: center;
	font-size: 16px;
	padding: 5px 5px 5px 5px;
	border-radius: 3px;
	cursor: pointer;
}

#okclose .glyphicon,
#errclose .glyphicon {
	padding-right: 5px;
	vertical-align: -1px;
}