@charset "UTF-8";
/* instagram バナー */
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local("YoGothic-Bold"), local("Yu Gothic");
  /* Chrome用 */
}
/* バージョン5 */
/* 各ページ共通の CSS
------------------------------------------ */
body {
  color: #222222;
  font-family: "Noto Sans Japanese", Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif, serif;
  font-size: 1rem;
  line-height: 1.6;
  /* font-sizeを基準に相対値 */
  padding-top: 110px;
  /* fixed navbar 利用時必須 */
}

@media (min-width: 768px) {
  body.fixed_top {
    padding-top: 110px;
    /* fixed navbar 利用時必須 */
  }
}
/* トップページのみ jumbotron との距離を縮めるため */
body#index,
body#test {
  /*padding-top: 80px;*/
}

/* メディアクエリ（転記用）モバイルファースト版
--------------------------------- */
/* メディアクエリ（転記用）逆方向版
--------------------------------- */
/* オーバーライト（再定義用） 
--------------------------*/
/* ヘッダの送り行を1remに */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

/* プレースホルダーの色が濃すぎるので */
.form-control::placeholder {
  color: #CCC;
}

/* レイアウト 
--------------------------*/
/* レイアウトブロック */
.block {
  margin-bottom: 30px;
}

.block_border {
  border: 1px solid #000;
  padding: 30px;
}

.block_border_color {
  border: 1px solid #8E5C3B;
  border-radius: 8px;
  padding: 30px;
}

/* ドットの飾り下線 */
.border_dotted {
  padding-top: 20px;
  margin-bottom: 40px;
  border-bottom: 1px dotted #ddd;
}

/* ドットの飾り下線_タブレット以下の時は余白を小さく */
@media only screen and (max-width: 768px) {
  .border_dotted {
    padding-top: 0px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ddd;
  }
}
/* イメージの回り込み */
img.float-right {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

/* 暖色・寒色 */
.bg_light {
  background-color: #FFFFFF;
}

.bg_dark {
  /* 無指定 */
}

/* ヘッダー */
header {
  background-color: #FFF;
  border-bottom: 1px solid #CCC;
}

/* ペーパーシャドウ（マテリアルデザイン） 
header,
.paper_shadow {
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	-moz-box-shadow: 		0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	box-shadow: 				0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	position: relative;
}*/
/* paper_shadow （bootstrap4 版） */
.paper_shadow {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

/* マップ背景 */
#map {
  background-color: #EEEEEE;
}

/* タイポグラフィ 
--------------------------*/
/* フォントサイズ */
h1 {
  font-size: 1.4rem;
  font-weight: 600;
}

h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.85rem;
}

h1 .small {
  font-size: 1.2rem;
}

h2 .small {
  font-size: 1rem;
}

h3 .small {
  font-size: 1rem;
}

h4 .small {
  font-size: 0.85rem;
}

/* 行間調整 */
.gyokan_00 {
  margin-bottom: 0;
}

.gyokan_10 {
  margin-bottom: 10px;
}

.gyokan_20 {
  margin-bottom: 20px;
}

.gyokan_30 {
  margin-bottom: 30px;
}

.gyokan_40 {
  margin-bottom: 40px;
}

/* フォントを明朝に */
.mincho {
  letter-spacing: 0.1em;
  line-height: 1.8em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* タイトル */
.title {
  font-weight: 700;
}

p.title {
  border-bottom: dotted 1px #CCC;
  margin-bottom: 4px;
  padding: 2px 0;
}

h1.title {
  color: #fff;
  padding: 4px 0;
  font-size: 2em;
  color: #8E5C3B;
}

/* アイテム */
.item {
  border-bottom: dotted 1px #CCC;
  margin-bottom: 1rem;
  padding: 2px 0;
  color: #8E5C3B;
}

/* ページヘッダ */
.page_header {
  background-color: #8E5C3B;
  background-image: url(../images/bg_slider.png);
  background-repeat: repeat;
  padding: 2rem 0;
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
}

.page_header h1 {
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0;
}

/* 左右の small がずれているので */
.page_header h1 small {
  padding: 0.2rem 0;
}

/* リード部分 */
h2.title {
  color: #8E5C3B;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: solid 2px #8E5C3B;
}

h2.title small {
  color: #555555;
}

/* アイテム（アンダーバータイプ） */
h3.title {
  border-bottom: dotted 1px #CCCCCC;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

h3.title b,
h3.title strong {
  color: #222222;
  font-size: 140%;
  font-weight: 700;
}

h5.title {
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* アイテム（大きい数字タイプ） */
.number_title {
  font-size: 5em;
  font-family: "Lato", sans-serif;
}

/* アイテム（囲みタイプ） */
p.box_title {
  border: 1px solid #8E5C3B;
  color: #8E5C3B;
  text-align: center;
  padding: 10px;
  margin-top: 8px;
}

/* アイテム（大きい数字タイプ） */
h3.number_title {
  font-size: 3em;
  color: #8E5C3B;
  font-family: "Lato", sans-serif;
}

.message {
  font-size: 1.8em;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* 強調文字 */
.caution {
  font-weight: bold;
  color: #8E5C3B;
}

/*数字のフォント変更 */
.concept_number {
  font-family: "Lato", sans-serif;
  font-size: 1.5em;
  color: #8E5C3B;
  text-shadow: 0 0 3px white, 0 0 6px white;
  /* グローエフェクト */
}

/* リンクカラー */
a {
  color: #8E5C3B;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #6c3a19;
  text-decoration: none;
}

/* bootstrap4 で白背景のボタン */
a.btn_white {
  color: #222222;
  background-color: #FFFFFF;
}

/* アイコンの色*/
a.btn_white i.fa,
a.btn_white i.fas,
a.btn_white i.far {
  color: #8E5C3B;
}

a.btn_white:hover,
a.btn_white:focus {
  background-color: rgba(176, 141, 117, 0.2);
}

/* ボタンのフォーカスを消す */
.btn.focus,
.btn:focus {
  box-shadow: none;
}

/* リンクした画像は hover時 半透明 */
a:hover img,
a:active img {
  opacity: 0.7;
}

/* リンクの部品 */
.square_btn {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  padding: 0.5em 2em;
  text-decoration: none;
  color: #fff;
  background: #8E5C3B;
  transition: .4s;
}

.square_btn:hover {
  background: #ECECEC;
  color: #8E5C3B;
}

/* リード・キャプション */
.lead {
  font-size: 1.2rem;
  text-align: center;
  /*background-color: $theme_color_light;*/
  padding: 20px;
}

.lead .caption {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #8E5C3B;
}

/* インデント（マージン調整版） */
.indent {
  margin-left: 2rem;
}

.indent2 {
  margin-left: 4rem;
}

.indent3 {
  margin-left: 6rem;
}

/* テーマカラーの背景 */
.bg_theme {
  background-color: rgba(176, 141, 117, 0.1);
}

.alert.alert_theme {
  background-color: rgba(142, 92, 59, 0.2);
  border-color: #8E5C3B;
}

/* アイコン Font Awesome
------------------------------------------ */
/* Android や iPhone で表示されない時は、FontAwesome の提供する CDN を無効にし、以下の記述を効かせること  
@import url(//use.fontawesome.com/releases/v5.2.0/css/all.css);*/
/* font awesome 右マージン調整 */
.fa,
.fas,
.far {
  margin-right: 6px;
}

/* 新たな FontAwesome 5 では使うフォントごとにウェイトが必要 */
.fas {
  font-weight: 900;
}

/* fes SOLID の場合 */
.far {
  font-weight: 400;
}

/* fer REGULAR の場合 */
/* 頭に矢印をつける */
.arrow:before,
article .arrow:before,
.post .arrow:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
}

.arrow {
  color: #8E5C3B;
}

/* リンクの頭には別の矢印をつける */
a.arrow:before,
article a.arrow:before,
.post a.arrow:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
}

/* ご注意アイコンを付ける */
.warning:before,
article .warning:before,
.post .warning:before {
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
}

.warning {
  color: #cc0000;
}

/* チェックマークアイコン */
.check:before,
article .check:before,
.post .check:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
}

/* Back to Top のアイコンは黒ベースに */
.back-to-top {
  color: #6c3a19;
}

a.back-to-top:hover {
  color: #B25900;
}

/* ナビゲーション
--------------------------------- */
/* ヘッダ上段のパディング */
header .upper {
  padding: 4px;
  background-color: rgba(176, 141, 117, 0.1);
}

/* ヘッダの upper 左の文字 */
header .upper .left {
  font-size: 14px;
  line-height: 1;
  /*margin-bottom: 6px;*/
}

/* ヘッダの電話番号部分の調整 */
header .upper .right .phone {
  line-height: 1;
}

header .upper .right .phone .number {
  font-size: 24px;
  font-weight: 600;
  text-align: right;
  line-height: 1;
  /*margin-bottom: 6px;*/
}

header .upper .right .phone .number .icon {
  color: #8E5C3B;
}

/* ヘッダの下 navbar 部分の調整 */
header .lower {
  background-color: rgba(176, 141, 117, 0.5);
}

/* メインナビが薄いので */
#main_navi.navbar-light .navbar-nav .nav-link {
  color: #222222;
}

/* スマホ時の調整 */
@media (max-width: 767.98px) {
  /* ヘッダの電話番号部分 */
  header .upper {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  header .upper .right .phone .number {
    font-size: 24px;
    margin-bottom: 0;
  }

  /* ロゴの部分の調整 */
  header .lower {
    padding-top: 9px;
    padding-bottom: 10px;
  }
}
/* メインナビ
--------------------------------- */
/* ナビゲーションの調整 */
.navbar {
  /*min-height: 80px;*/
  padding: 0 1rem;
}

/* スマホ時のプルダウンメニューの調整 */
.navbar-light .navbar-toggler {
  color: #333;
  border: none;
}

/* ナビのホバー色 */
.lower .navbar-nav > li > a:hover,
.lower .navbar-nav > li > a:focus {
  color: #222222;
  background-color: rgba(176, 141, 117, 0.2);
}

/* ナビリンクのpadding 調整 */
@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 25px 20px;
  }
}
.nav-link {
  padding: 1rem 1rem;
}

/* メインナビが薄いので */
#main_navi.navbar-light .navbar-nav .nav-link {
  color: #222222;
}

/* ナビの active や hover 時の背景*/
#main_navi.navbar-light .navbar-nav .nav-item.active .nav-link,
#main_navi.navbar-light .navbar-nav .nav-link:focus,
#main_navi.navbar-light .navbar-nav .nav-link:hover {
  background-color: rgba(176, 141, 117, 0.2);
}

/* トップナビのとき行間が多いので */
.navbar-nav a.nav-link {
  line-height: 1.2;
}

/* ラージ、ワイドのときのナビの設定 */
@media (min-width: 992px) {
  /* ナビバーのリンクの幅を広めにした */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
/* スマホ、ファブレットのときのナビの設定 */
@media (max-width: 767.98px) {
  /* プルダウンメニューの境界線 */
  .navbar-nav > li.nav-item {
    border-top: dotted 1px #CCCCCC;
  }

  /* 幅をマイナスマージンで調整 */
  .navbar-collapse {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  /* 上記をすると文字が左側にくっつくので */
  .navbar-nav > li.nav-item > .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
/* ドロップダウンで active なコンテンツに背景色がつくのをやめる */
.navbar-light .navbar-nav .open .dropdown-menu > .active > a,
.navbar-light .navbar-nav .open .dropdown-menu > .active > a:focus,
.navbar-light .navbar-nav .open .dropdown-menu > .active > a:hover {
  color: #8E5C3B;
  background-color: transparent;
}

/* ハンバーガーメニューの調整 */
.navbar-toggle {
  margin-top: 13px;
}

/* スマホ時ナビゲーションの 上下の幅を広げる */
.navbar-nav > li > a {
  	/*min-height: 59px;
    line-height: unset;
  	padding-top: 15px;
  	padding-bottom: 15px;*/
}

/* ナビゲーションの項目が多いので余白を詰めカラム落ちしないように */
.nav > li > a {
  padding: 15px 11px;
}

.dropdown-menu {
  padding: 0;
  box-shadow: none;
}

/* ナビゲーション ドロップダウン時の上下の幅を広げる */
.dropdown-menu > li {
  padding: 8px 0px;
}

/* ナビバーブランドロゴの上下の余白をなくす */
.navbar-brand {
  padding: 0;
}

/* ナビバーブランドがテキストのみの場合はフォントの指定 */
.navbar-brand.text_logo {
  padding: 1rem 0;
  color: #8E5C3B;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ナビゲーション スマートフォンの時ロゴの左に余白を付ける */
@media only screen and (max-width: 768px) {
  .navbar-brand {
    margin-left: 10px;
  }
}
/* ナビゲーションの高さの制限を解除*/
.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
  max-height: none;
}

/* ナビゲーション_スマホ時のドロップダウンのhover */
.navbar-light .navbar-nav .open .dropdown-menu > li > a:hover {
  color: #8E5C3B;
  background-color: #fff;
}

/* トップページ
--------------------------------- */
/* コンセプト */
.concept .card-body {
  padding: 10px;
}

/* ステッチの入ったヘッダ */
.stitch {
  margin-bottom: 0;
  /* ステッチの下の部分 */
  padding: 1em;
  text-align: center;
  text-decoration: none;
  background: #B08D75;
  color: #FFFFFF;
  /*border-radius: 4px;*/
  box-shadow: 0px 0px 0px 10px #B08D75;
  border: dashed 1px #FFF;
}

/* アイコンは大きく */
.concept .card .icon {
  color: #B08D75;
  font-size: 1.5rem;
}

/* ステッチの外枠 */
.stitch_outer {
  padding: 10px;
}

a.stitch_outer {
  display: block;
}

/* ステッチの hover  */
a:hover .stitch {
  opacity: 0.8;
}

/* ステッチのカラーバリエ */
.stitch.contact {
  background: #B25900;
  box-shadow: 0px 0px 0px 10px #B25900;
}

.stitch.facebook {
  background: #4267B2;
  box-shadow: 0px 0px 0px 10px #4267B2;
}

.stitch.instagram {
  background-color: #C40092;
  box-shadow: 0px 0px 0px 10px #C40092;
}

/* セクションは上下 padding をつける */
.section {
  padding: 30px 0;
}

/* 施工事例 */
.section.showcase {
  background-color: rgba(142, 92, 59, 0.1);
}

a.show_all {
  color: #8E5C3B;
}

/* 会社概要
--------------------------------- */
#history table th {
  font-weight: 400;
  white-space: nowrap;
}

/* 製品カタログ カテゴリナビ
--------------------------------- */
#sub_navi {
  margin: 2rem 0;
}

/* ピル型ナビのボーダーを標準で付ける */
#sub_navi .nav-pills .nav-link {
  margin: 0 0.25rem 0.5rem;
  border: solid 1px #CCCCCC;
  padding: 0.25rem 0.5rem;
}

#sub_navi .nav-pills a.nav-link:hover {
  background-color: rgba(176, 141, 117, 0.2);
}

#sub_navi .nav-pills a.nav-link.active {
  background-color: #8E5C3B;
}

/* 製品の仕様 スペック表
--------------------------------- */
/* テーブルの背景色 */
.table.spec {
  background-color: #EEEEEE;
  border-color: #CCCCCC;
}

/* ヘッダの色 */
table.spec th {
  background-color: rgba(142, 92, 59, 0.4);
  text-align: center;
}

/* td だけ背景色を変える */
table.spec td {
  background-color: #EEEEEE;
  text-align: center;
  border-color: #CCCCCC;
}

table.spec thead th {
  background-color: rgba(142, 92, 59, 0.5);
}

/* 仕様の下に白線を引く */
.table.spec:not(.table-borderless) tr:last-child th {
  border-color: #FFFFFF;
}

/* パンくずリスト
--------------------------------- */
/* パンくずリストの調整 */
.breadcrumbs {
  font-size: 0.9em;
}

.breadcrumbs a {
  color: #6c3a19;
}

/* スライダー（fxslider）
--------------------------------- */
/* スライダー背景 */
.slider {
  background-image: url(../images/bg_slider.png);
  background-repeat: repeat;
  padding: 30px 0;
}

/* スライダーのボーダー消去・白背景削除 */
.flexslider {
  margin: 0;
  border: none;
  background-color: transparent;
}

/* スライダー下の丸いコントロール消去 */
.flex-control-paging {
  display: none;
}

/* スライダー左右のコントロール下が切れるので */
.flex-direction-nav a {
  height: 50px;
}

/* スライダーのオーバーレイ */
.slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* スライダー （bootstrap4 版 カルーセル利用）
------------------------------------------ */
/* 左右のコントロールの位置を両サイドに近づける */
.carousel-control-next,
.carousel-control-prev {
  width: 5%;
}

/* 標準のアイコンは色が変えられないので font-awesome に変えて調整 */
.slider .icon {
  font-size: 2.5rem;
  color: #000000;
  opacity: 0.5;
  margin: 0;
}

/* HOME
------------------------------------------ */
/* トップページナビの背景をイメージに */
.top_navi .bg_image {
  background-size: cover;
  /*opacity: 0.6;*/
}

.top_navi .bg_image.rent {
  background-image: url(../images/btns/btn_bg_rent.jpg);
}

.top_navi .bg_image.sale {
  background-image: url(../images/btns/btn_bg_sale.jpg);
}

.top_navi .bg_image.sale.business {
  background-image: url(../images/btns/btn_bg_sale_business.jpg);
}

.top_navi .bg_image.sale.land {
  background-image: url(../images/btns/btn_bg_sale_land.jpg);
}

.top_navi .bg_image.reform {
  background-image: url(../images/btns/btn_bg_reform.jpg);
}

/* テキストのグロー */
.top_navi a {
  color: #000000;
  border: solid 1px #CCCCCC;
  background-color: rgba(255, 255, 255, 0.8);
}

/* 文字とアイコンは透過させない */
.top_navi a span {
  font-weight: 700;
  text-shadow: 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF, 0 0 10px #FFFFFF;
}

.top_navi a:hover {
  color: #000000;
  border: solid 1px rgba(142, 92, 59, 0.8);
  background-color: white;
}

.top_navi a:focus {
  color: #000000;
  border: none;
}

/* アイコンだけはテーマカラー */
.top_navi .icon {
  color: #8E5C3B;
}

/* カテゴリ別アイテム */
.category .card {
  background-color: rgba(176, 141, 117, 0.2);
  color: #222222;
}

/* カードの hover 時のシャドウを付けたいが、bootstrap4 が !important 多すぎて効かず */
.category a:hover .card.shadow-sm {
  -webkit-box-shadow: 0px 0px 8px 1px rgba(102, 175, 233, 0.6);
  -moz-box-shadow: 0px 0px 8px 1px rgba(102, 175, 233, 0.6);
  box-shadow: 0px 0px 8px 1px rgba(102, 175, 233, 0.6);
}

/* HOME_info */
.info_date {
  color: #8E5C3B;
  margin-right: 20px;
}

ul.info {
  /*list-style: none;*/
  padding-left: 20px;
}

ul.info li {
  border-bottom: dotted 1px #CCCCCC;
  padding: 4px 0;
}

@media only screen and (max-width: 479px) {
  .info_date {
    display: block;
  }
}
/* カバー写真 */
.cover {
  background-image: url(../images/img_top_concept.jpg);
  background-size: cover;
  height: 500px;
}

/* フットバナー 
------------------------------------------ */
.foot_banner {
  background-color: rgba(176, 141, 117, 0.3);
  margin-top: 40px;
  padding: 20px 0;
}

/* フットバナーを重ねるときは2番めの上マージンを0に */
.foot_banner + .foot_banner {
  margin-top: 0;
}

/* お問い合わせは色違い */
.foot_banner.banners {
  background-color: rgba(176, 141, 117, 0.6);
}

/* キャプション */
.foot_banner .caption {
  margin: 0.5rem 0;
  text-align: center;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .foot_banner .caption {
    text-align: left;
  }
}
.foot_banner a.banner {
  padding: 10px 20px;
  color: #222222;
}

.foot_banner a.btn {
  font-size: 20px;
}

/* disable の背景色を白に */
.foot_banner .btn-outline-dark.disabled,
.foot_banner .btn-outline-dark:disabled {
  background-color: #FFFFFF;
}

/* footer 
------------------------------------------ */
footer {
  background-color: #8E5C3B;
  background-image: url(../images/bg_slider.png);
  background-repeat: repeat;
  padding: 20px 0;
  color: #222222;
}

footer.dark {
  /* 上記のリバース色 */
  color: #FFFFFF;
}

footer .title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222222;
  border: none;
}

footer.dark .title {
  /* 上記のリバース色 */
  color: #FFFFFF;
}

/* フッタのアイテムは白線 */
footer .item {
  border-bottom: dotted 1px #CCCCCC;
  margin-bottom: 4px;
  padding: 2px 0;
  color: #222222;
}

footer.dark .item {
  /* 上記のリバース色 */
  border-bottom: dotted 1px #CCCCCC;
  color: #FFFFFF;
}

/* フッタのリンク */
footer a.arrow {
  color: #222222;
  text-decoration: none;
}

footer.dark a.arrow {
  /* 上記のリバース色 */
  color: #FFFFFF;
}

footer a.arrow:hover,
footer a.arrow:focus {
  color: #8E5C3B;
  text-decoration: none;
}

footer.dark a.arrow:hover,
footer.dark a.arrow:focus {
  /* 上記のリバース色 */
  color: #6c3a19;
}

.footer-nav {
  padding-left: 0;
}

.footer_btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer_btn a {
  padding: 10px 20px;
  margin: 0 30px;
  /*color: #fff;*/
  border: 1px solid #fff;
  transition: all .3s;
}

.footer_btn a:hover
.footer_btn a:active {
  color: #000;
  background-color: #fff;
  text-decoration: none;
}

.footer-nav li {
  font-size: 1.3rem;
  list-style: none;
  margin-bottom: 5px;
}

.footer-nav li a {
  /*color: #fff;*/
}

.footer-nav li a:hover,
.footer-nav li a:focus {
  /*color: #fff;*/
  opacity: 0.9;
  text-decoration: underline;
}

/* スマホ用アイコンボタン内アイコンの色 */
footer .fa-inverse {
  color: #8E5C3B;
}

/* スマホ用アイコンボタン内アイコンの背景色 */
footer .tap a {
  color: #fff;
}

/* スマホ用アイコンボタンをタップした時の色 */
footer .tap a:hover,
footer .tap a:focus {
  color: rgba(255, 255, 255, 0.5);
}

footer .tap a:hover .fa-inverse,
footer .tap a:focus .fa-inverse {
  color: #FFF;
}

/* スマホ用アイコンボタン下のテキスト */
footer .tap p {
  padding-top: 8px;
}

/* コピーライト */
.copyright {
  padding: 0.3rem;
  background-color: #6c3a19;
  color: #FFF;
}

.copyright p {
  line-height: 1;
  margin-bottom: 0;
}

.copyright small {
  font-weight: 200;
}

.footer_btn {
  padding-bottom: 40px;
  border-bottom: 1px dotted #ddd;
}

/* プライバシーボリシー
------------------------------------------ */
/* 個々のタイトルの前にスペースを設ける */
/*#privacy h2.title,*/
#privacy h3.title {
  margin-top: 2rem;
  border-bottom: dotted 1px #CCCCCC;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* qanda よくある質問
------------------------------------------ */
/*ボックス全体*/
.accbox {
  margin: 2em 0;
  padding: 0;
}

/*Q.の色を$theme_colorに*/
.q-color {
  color: #8E5C3B;
}

/*ラベル*/
.accbox label {
  display: block;
  margin: 1.5px 0;
  padding: 11px 12px;
  color: #252525;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s;
  border-bottom: solid 1.5px #f5f5f5;
}

/*ラベルホバー時*/
.accbox label:hover {
  background: #f5f5f5;
}

/*チェックは隠す*/
.accbox input {
  display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  margin-bottom: 20px;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
  height: auto;
  padding: 5px;
  opacity: 1;
}

/*pの中身を読みやすく*/
.accshow p {
  line-height: 1.7;
}

/* recruit_採用情報
------------------------------------------ */
/* bootstrapのデフォルトを書き換え */
/*
.alert-danger {
	color: #000;
	background-color: #fff;
	border-color: $theme_color;
}

.alert-danger a {
	color: $theme_color;
	font-weight: 600;
}
*/
/*
.btn-danger {
	margin-top: 30px;
}
*/
/* テーブルの背景 */
table.works th {
  background: #EEEEEE;
}

/* スマホ時の幅調整*/
@media (max-width: 767px) {
  table.works th {
    /*width: 35%;*/
  }
}
/* テーブルボーダーの色が違うので */
.table:not(.table-borderless) td,
.table:not(.table-borderless) th {
  border-top: 1px solid #CCCCCC;
}

/* テーブルの最後にもボーダーを */
.table:not(.table-borderless) tr:last-child th,
.table:not(.table-borderless) tr:last-child td {
  border-bottom: 1px solid #CCCCCC;
}

/* voices_お客様の声
------------------------------------------ */
/* マウスオーバーでキャプション表示 
参考サイト：http://www.nxworld.net/tips/css-only-caption-effect.html
*/
.portfolio figure {
  position: relative;
  overflow: hidden;
}

.portfolio figcaption {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .3s;
  transition: .3s;
  padding: 6px;
}

.portfolio figure:hover figcaption {
  bottom: 0;
}

/* マウスオーバーで写真ちょっと拡大 */
.portfolio figure .transform {
  /* baguettebox 適用でおかしくなるので外した */
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.portfolio figure:hover .transform_xxx {
  /* baguettebox 適用でおかしくなるので外した */
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* キャプション内は下マージンなし */
.portfolio figcaption > * {
  margin-bottom: 0;
  color: #FFF;
}

/* 写真の下マージンの調整 */
.portfolio figure.portfolio-item {
  margin-bottom: 20px;
}

/* アイコンを四角のボタンに */
a.portfolio-zoom i.fa,
a.portfolio-zoom i.fas,
a.portfolio-link i.fa,
a.portfolio-link i.fas {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* アイコンの hover 時背景 */
a.portfolio-zoom i.fa:hover,
a.portfolio-zoom i.fas:hover,
a.portfolio-link i.fa:hover,
a.portfolio-link i.fas:hover {
  background-color: #D9A300;
  color: #FFF;
}

/* 物件名・カテゴリのマージン、文字色調整 */
.portfolio-text {
  height: 100px;
}

.portfolio-text > * {
  margin-top: 0;
  margin-bottom: 0;
  color: #FFF;
  line-height: 1.4;
}

/* アイコンは中央揃え */
.portfolio-icons {
  text-align: center;
}

.portfolio-icons a {
  color: #FFF;
}

/* カード間のマージンボトム */
.portfolio .item {
  margin-bottom: 15px;
}

/* お問い合わせ */
.form_require {
  color: #cc0000;
}

.form_require:before {
  color: #cc0000;
  content: "*";
}

/* 施工事例 
------------------------------*/
/* プランニングのポイント */
.point {
  background-color: rgba(142, 92, 59, 0.3);
  /*color: $color_white;*/
  padding: 0.5rem 1rem;
}
