@charset "utf-8";
/* CSS Document */

/*================================
ヘッダー
================================*/
/*ロゴ*/
body#kfac .navbar-brand a.logo{
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}
body#kfac .navbar-brand a.logo img{
  display: none;
}
/*================================
コンテンツ共通部分
================================*/
/*セクション間のライン*/
#mainarea section::before{
  display: none;
}

/*================================
会社概要
================================*/
.official_position{
  width: 160px;
  display: inline-block;
}

/*================================
リニューアル工事等
================================*/
#constraction a{
  display: block;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#constraction a img{
  transition: .3s;
}
#constraction a:hover img{
  opacity: .9;
}

/*================================
個人情報保護方針・個人情報のお取扱いについて
================================*/
.privacy_box{
  counter-reset: cnt;
  border: 1px solid #E6E6E6;
  padding: 30px;
  margin-top: 40px;
}
.privacy_title{
  font-size: 20px;
  color: #009A63;
}
.privacy_box .privacy_title::before{
	content: counter(cnt) ". ";
	counter-increment: cnt;
}
.privacy_box p{
  margin-bottom: 30px;
}
.privacy_box ol{
  padding-left: 1em;
  margin-bottom: 0;
}
.privacy_box .bc_cream{
  margin-bottom: 30px;
}
.privacy_box .signature {
  text-align: right;
  margin-bottom: 0;
}
.signature span{
  font-size: 18px;
  font-weight: bold;
}
.privacy_contact{
  background-color: #F6F5EC;
  padding: 30px;
  margin-top: 30px;
}
.privacy_contact th,
.privacy_contact td{
  vertical-align: top;
}
.privacy_contact th{
  padding-right: 40px;
  font-weight: normal;
}
@media (max-width:767px){
  .privacy_contact table{
    width: 100%;
  }
  .privacy_contact th,
  .privacy_contact td{
    width: 100%;
    display: block;
  }
  .privacy_contact th{
    font-weight: bold;
  }
  .privacy_contact td{
    margin-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
  }
}

/*個人情報のお取扱いについて
================================*/
.bracket_box{
  background-color: #F6F5EC;
  padding: 15px;
  margin-bottom: 30px;
}
ol.bracket_list {
  margin-left: 0; /* サイトに合せて調整 */
  padding-left: 1.5em;
  counter-reset: cnt;
}
ol.bracket_list li {
	list-style-type: none;
	position: relative;
}
ol.bracket_list li:not(:last-child){
  margin-bottom: .5rem;
}

ol.bracket_list li:before {
	content: "(" counter(cnt) ")";
	counter-increment: cnt;
	display: inline-block;
	margin-left: -1.5em; /* サイトに合せて調整 */
	width: 1.5em; /* サイトに合せて調整 */
	text-align: right;
	position: absolute;
	left: 0;
}
ol.circle_list {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.circle_list li {
  padding-left: 1.3em;
  position: relative;
}
ol.circle_list li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  margin-left: 0;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.28em;
  width: 1.28em;
  color: #000;
  font-size: 0.78125em;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.privacy_subtitle{
  font-size: 18px;
  font-weight: normal;
}
