@charset "UTF-8";


/*フォントの指定 */
.wf-notosansjapanese { font-family: "Noto Sans JP"; }
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }

/*SNSアイコンのレイアウト */
.sns_icon {
    font-size: 1.2rem;
    color: #006;
}

/*BOXの横並び */

.container {
	container-type: inline-size;
	margin: auto;
	width: 95%;
}

.grid {
  --_column: 1;
  --_gap: clamp(8px, 2cqi, 16px);

  display: block grid;
  grid-template-columns: repeat(auto-fit, calc((100% - var(--_gap) * (var(--_column) - 1)) / var(--_column)));
  gap: var(--_gap);
  justify-content: center;

  @container (800px <= inline-size) {
    --_column: 4;
  }
}


/*説明テキストのBOXスタイル */

.box-design01 {
	margin: 20px auto 20px 20px;
	padding: 20px;
	border: 1px solid #000066;
	font-size: 14px;
	font-weight: normal;
	font-family: "Noto Sans JP";
	color: #006;
}
.box-design01-ttl {
	position: relative;
	left: -40px;
	background-color: #4c9ac0;
	color: #fff;
	padding: 0.5em 1em;
	margin: 0;
	width: 100%;
	font-size: 18px;
	font-family: "Noto Sans JP";
	font-weight: normal;
}

.box-design02 {
	padding:3em 2em 2em; /* ボックス内側余白 */
	position:relative; /* 配置(ここを基準に)*/
	border: 1px solid #757575; /* ボックスの線 (太さ・種類・色)*/
	background-color:#F8F8F8; /* ボックス背景色*/
}
.box-design02-ttl {
	background-color:#757575; /* タイトル背景色 */
	font-size: 1em;/* タイトル文字の大きさ */
	color: #fff ; /* タイトル文字色 */
	padding: 7px 12px;/*タイトルの余白*/
	line-height: 1;/*タイトルの行の高さ*/
	position:absolute;/* 配置(ここを動かす) */
	top: 0; /*上からの距離*/
	left: 0; /*左からの距離*/
}


.box-design {
  margin: 20px auto;
}
.box-design-ttl {
  background-color: #4c9ac0;
  color: #fff;
  padding: 0.5em 20px;
  width: fit-content;
  border-radius: 10px 10px 0 0;
  margin: 0;
  font-size: 17px;
  font-weight: bold;
}
.box-design-txt {
  padding: 10px 20px;
  border: 2px solid #4c9ac0;
}


/*区切り線*/


hr.style-four {
    height: 20px;
    border: 0;
    box-shadow: inset 0 30px 30px -25px rgba(153,204,204,1.5);
}


/*業務内容のレイアウトボックス*/

.service-text-box01 {
	padding: 5px;
	width: 95%;
	margin: auto;
	font-size: 12pt;
	text-align: left;
}

.service-text-box02 {
	width: 85%;
	margin: auto;
	font-size: 12pt;
	text-align: left;
}
	
.service-text-box03 {
	width: 65%;
	margin: auto;
	font-size: 12pt;
	text-align: center;
}
@media screen and (max-width:768px) {
.service-text-box03 {
	width: 90%;
	margin: auto;
	font-size: 12pt;
	text-align: center;
}
}


/*タイトのスタイル01--斜め線があるデザイン*/
.title-style01 {
	margin: 0;                 /* デフォルトCSS打ち消し */
	position: relative;        /* 位置調整 */
	font-weight: normal;       /* 文字の太さ調整 */
	font-size: 24px;            /* 文字サイズ指定 */
	background-color: #4c9ac0;    /* 背景色指定 */
	color: #fff;               /* 文字色指定 */
	padding: 10px 0 10px 30px;  /* 余白指定 */
	margin-bottom: 20px;       /* 周りの余白指定 */
}
.title-style01:before {
   content: '';                /* 空の要素を作る */
    height: 110%;               /* 高さ指定 */
    width: 3px;                 /* 幅指定 */
    display:  block;            /* ブロック要素にする */
    position:  absolute;        /* 位置調整 */
    left: 14px;                 /* 位置調整 */
    top: -3px;                  /* 位置調整 */
    margin:  auto;              /* 位置調整 */
    background-color:  #fff;    /* 背景色指定 */
    transform: rotate(3deg);    /* 回転 */
}
.title-style01:after {
    content: '';                /* 空の要素を作る */
    height: 116%;               /* 高さ指定 */
    width: 3px;                 /* 幅指定 */
    display:  block;            /* ブロック要素にする */
    position:  absolute;        /* 位置調整 */
    left: 14px;                 /* 位置調整 */
    top: -6px;                  /* 位置調整 */
    margin:  auto;              /* 位置調整 */
    background-color:  #fff;    /* 背景色指定 */
    transform: rotate(-15deg);  /* 回転 */
}

/*タイトのスタイル02--背景色が切替るデザイン*/
.heading {
  margin: 10px 0
}
.title-style02 .heading {
	position: relative;
	height: 50px;
	padding: 0;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #4c9ac0;
	line-height: 50px;
	font-weight: bold;
}
.title-style02 .heading .caption{
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 25px;
  padding-right: 10px;
  background: #4c9ac0;
  color: #fff;
}
.title-style02 .heading .caption:before{
  display: block;
  content: ' ';
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  right: 99.9%;
  top: 0;
  border: 0 solid transparent;
  border-width: 50px 37px 0 0;
  border-right-color:#4c9ac0;
}
.title-style02 .heading .title-1{
  float: left;
  padding-left: 5px;
}

/*マーカー風のアンダーライン*/
span.marker {
	background-color: rgba(0,153,204,0.5);
}

/*========= 施工事例のためののCSS ===============*/

/*工事内容のミニボタン*/
.text-menu-box01 {
	padding: 5px;	/*上下、左右への余白*/
	text-align: right;
	margin: auto;
}

.btn-social-long-menu {
	color: #FFF;/*文字・アイコン色*/
	border-radius: 7px;/*角丸に*/
	display: inline-block;
	height: 25px;/*高さ*/
	width: 140px;/*幅*/
	text-align: center;/*中身を中央寄せ*/
	font-size: 16px;/*文字のサイズ*/
	line-height: 25px;
	overflow: hidden;/*はみ出た部分を隠す*/
	text-decoration: none;/*下線は消す*/
	background-color: #999999;
	margin: auto;
}

.btn-social-long-menu .fa-menu {
  text-shadow: 2px 2px 0px #4287d6;
  font-size: 14px;
}

.btn-social-long-menu span {
  display:inline-block;
  transition: .5s;
}

.btn-social-long-menu:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}


/*施工事例の写真の表示*/

.anim-box{
    animation-name: fadein;
    animation-duration: 3s;
}
@keyframes fadein{
    from{
    opacity: 0;
    transform: translatey(40px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}


/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}


/*会社概要のレイアウト*/

/*テーブル部分のレイアウト*/

table {
	border-collapse: collapse;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

table tr {
	margin: auto;
	vertical-align: center;
}
table th,
table td {
	padding: 5px;
	text-align: center;
}
table th {
  font-size: .85em;
}
.price{
  text-align: right;
  color: #167F92;
  font-weight: bold;
}
.non{
  background:#fff
}
@media screen and (max-width: 900px) {
  table {
    border: 0;
    width:100%
  }
  table th{
    display: block;
    border-right: none;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    display: block;
    border-bottom: 1;
    margin-bottom: .625em;
  }
  table td {
	display: block;
	font-size: .8em;
	text-align: center;
	position: relative;
	padding: 5px;
    border-bottom: 1;
	border-right: none;
  }
  
  table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
  }
  table td:last-child {
      border-bottom: 1px solid #900; 
    }
  }
  table tbody th {
    color: #fff;
}
}

.left-box {
	text-align: left;
	padding: 5px;
}
.nowrap {
     white-space: nowrap;
}


/*会社概要の内容レイアウト*/
table.company {
    width: 80%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 15px;
    font-size: 12px;
    text-align: left;
}

table.company th,
table.company td {
	padding: 10px;
	text-align: left;
}

table.company th {
    vertical-align: middle;
    text-align: left;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
    font-size: 12pt;
    background-color: #000066;
    line-height: normal;
}

table.company th:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #000066;
	border-width: 10px;
	margin-top: -10px;
	text-align: left;
}

/* firefox */
@-moz-document url-prefix() {
	table.company th::after {
	float: right;
	padding: 0;
	left: 30px;
	top: 10px;
	content: " ";
	height: 0;
	width: 0;
	position: relative;
	pointer-events: none;
	border: 10px solid transparent;
	border-left: #000066 10px solid;
	margin-top: -10px;
	text-align: left;	
	}
}

table.company td {
	padding-left: 20px;
	font-size: 11pt;
	font-weight: normal;
	color: #333;
	text-align: left;
	background-color: #CCCCCC;
}


/*ノート風のテキスト表示*/
.text-style01 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 98.5%, #000 100%);
  background-repeat: repeat-y;
  background-size: 100% 2.4em;
  line-height: 2.4;
}


/*メールフォームの見出しデザイン　ブルー*/

.mail-text-box {
	padding: 5px;
	width: 80%;
	margin: auto;
	font-size: 12pt;
	text-align: left;
}

@media screen and (max-width:768px) {
.mail-text-box {
	padding: 5px;
	width: 90%;
	margin: auto;
	font-size: 12pt;
	text-align: left;
}

}


/*プライバシーポリシーの見出しデザイン　ブルー*/

.pb-title-style01 {
	margin: 0;                 /* デフォルトCSS打ち消し */
	position: relative;        /* 位置調整 */
	font-weight: normal;       /* 文字の太さ調整 */
	font-size: 24px;            /* 文字サイズ指定 */
	background-color: #000066;    /* 背景色指定 */
	color: #fff;               /* 文字色指定 */
	padding: 10px 0 10px 30px;  /* 余白指定 */
	margin-bottom: 20px;       /* 周りの余白指定 */
}
.pb-title-style01:before {
   content: '';                /* 空の要素を作る */
    height: 110%;               /* 高さ指定 */
    width: 3px;                 /* 幅指定 */
    display:  block;            /* ブロック要素にする */
    position:  absolute;        /* 位置調整 */
    left: 14px;                 /* 位置調整 */
    top: -3px;                  /* 位置調整 */
    margin:  auto;              /* 位置調整 */
    background-color:  #fff;    /* 背景色指定 */
    transform: rotate(3deg);    /* 回転 */
}
.pb-title-style01:after {
    content: '';                /* 空の要素を作る */
    height: 116%;               /* 高さ指定 */
    width: 3px;                 /* 幅指定 */
    display:  block;            /* ブロック要素にする */
    position:  absolute;        /* 位置調整 */
    left: 14px;                 /* 位置調整 */
    top: -6px;                  /* 位置調整 */
    margin:  auto;              /* 位置調整 */
    background-color:  #fff;    /* 背景色指定 */
    transform: rotate(-15deg);  /* 回転 */
}

.pb01 {
	position: relative;
	padding: 5px 26px 5px 42px;
	font-size: 20px;
	color: #2d2d2d;
	margin-left: -33px;
	line-height: 1.3;
	z-index: -2;
	background-color: #99CCFF;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #006;
}

.pb01:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index: -1;
}

.pb01:after {
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 40px transparent;
  border-bottom: solid 79px white;
  z-index: -1;
}