@charset "utf-8";

@media screen and (min-width: 768px) {
		a[href^="tel:"] {
			pointer-events: none;
		}
}

* {
	box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  /*font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
  font-family:/*'Roboto','Noto Sans JP',*/ "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;	
}

a {
	color: #6ba3c6;
	text-decoration: none;
}

/*font-family: 'Abel', sans-serif;*/

html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;/* 16px*/
    line-height: 2;
}

img {
    line-height: 1;
    font-size: 0;
    height: auto;
    max-width: 100%;
}

p {
	/*font-size: 1.4rem;*/
	font-size: 1.6rem;
	line-height: 1.8;
}

ul.list-disc {
	list-style-type: disc;
}

ul.list-disc li {
	margin-left: 1.5em;
}

.flex {
	display: flex;
}

.flex-justify {
	justify-content: center;
}

.flex-algin-center {
	align-items: center;
}

/* ここからスマホ用トグルボタン */
.gnav_btn {
  width: 48px;
  height: 48px;
  /*margin-top: 14px;*/
  display: none;
	
  position: absolute;
    top: 0;
    right: 0;
	
	background: #0075c2;
	padding-top: 10px;
	
	z-index: 9999;
}

.gnav_btn p {
	font-size: 11px;
	text-align: center;
	letter-spacing: 0;
	padding-top: 5px;
	color: #fff;
	line-height: 1.0;
	font-family: 'Roboto', sans-serif;
}

.gnav_btn--lines {
  position: relative;
  width: 26px;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
}
.gnav_btn--lines span {
  transition: all .4s;
  box-sizing: border-box;
}
.gnav_btn--lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.gnav_btn--lines span:nth-of-type(1) {
  top: 0;
}
.gnav_btn--lines span:nth-of-type(2) {
  top: 7px;
}
.gnav_btn--lines span:nth-of-type(3) {
  bottom: 0;
}
header.active .gnav_btn--lines span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-35deg);
  transform: translateY(7px) rotate(-35deg);
}
header.active .gnav_btn--lines span:nth-of-type(2) {
  opacity: 0;
}
header.active .gnav_btn--lines span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(35deg);
  transform: translateY(-7px) rotate(35deg);
}

/* ここまでスマホ用トグルボタン */

.gnav-sp {
	display: none;
}

/* ここからヘッダー */

.header {
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
 
	background-color: #fff;
	position: fixed;
	transition: background-color 1s;
}


.home .header:hover,
.home header.wh,
header.wh {
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
}

.home .header {
	background-color: transparent;
}

.header-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 62px;
}

.header-logo {
	display: block;
    margin: 6px 0 0 26px;
}

.header-logo-img {
    width: 310px;
    height: 48px;
}

.logo-color {
	height: 100%;
    background-image: url(../images/logo-wh.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}





.home .header:hover .logo-color,
.home header.wh .logo-color,
header.wh .logo-color {
    background-image: url(../images/logo-bl.png);
}

.home .header:hover .header-nav-item-inner,
.home header.wh .header-nav-item-inner,
header.wh .header-nav-item-inner {
	color: #000;
}

.header-menu {
    flex: 1;
    display: flex;
}

.header-nav {
    position: static;
    display: flex;
    margin: 0 0 0 auto;
    padding: 0 13px 0 0;
}

.header-nav-item {
    position: static;
    display: block;
    padding: 0 25px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .05em;
}

.header-nav-item-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    /*color: inherit;*/
    text-decoration: none;
	color: #fff;
}

.header-nav-item-inner:after {
    position: absolute;
    left: 50%;
    bottom: 12px;
    content: "";
    display: block;
    width: calc(100% + 14px);
    height: 2px;
    background-color: #0075c2;
    transform: translate(-50%) rotateY(90deg);
    transition: transform .25s ease;
}

a.header-nav-item-inner:hover:after {
    transform: translate(-50%) rotateY(0deg);
}

.header-nav-item-children {
    position: absolute;
    z-index: 1;
    top: 62px;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #0075c2;
    transition: all .25s ease;
    transform: rotateX(90deg);
    transform-origin: top;
    opacity: 0;
}

.header-nav-item-children-item {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    
}

.header-nav-item-children-item-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 0 25px;
	color: #fff;
}

.header-nav-item-children-item-inner:hover {
	opacity: .5;
}

.header-nav-item:hover .header-nav-item-children {
    transform: rotateX(0);
    transform-origin: top;
    opacity: 1;
}

.header-button {
    width: 200px;
    max-width: 200px;
    flex-basis: 200px;
    height: 62px;
	background: #8edcf2;
	color: #fff;
	transition: 0.3s linear;
}

.header-button:hover {
	background: #0075c2;
}

.header-button-item {
    height: 100%;
    font-size: 1.6rem;
	transition: 0.3s linear;
}

.header-button-item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    text-decoration: none;
    /*opacity: 1;
    transition: opacity .25s ease;*/
	height: 62px;
	line-height: 62px;
}

/* ここまでヘッダー */

/* ここからヒーローエリア */

.main-img {
    margin: 0px;
    position: relative;
}

.main-img .main-img-pc {
	display: block;
    width: 100%;
    height: auto;
}

.main-img .main-img-sp {
	display: none;
}

.main-img .down {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 48px;
    height: 38px;
    margin: auto auto 30px;
}

.index-hero-catch {
	color: #fff;
	position: absolute;
	top: 30%;
	left: 5.5vw;
}

.index-hero-title {
	font-size: 6.0rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.05em;
	border-bottom: 2px solid #fff;
	margin-bottom: 12px;
}

.index-hero-text {
	font-size: 3.0rem;
	line-height: 1.0;
	letter-spacing: 0.05em;
}

/* ここまでヒーローエリア */

/* ここからindexキャッチ・エリア */

.index-catch-area {
	padding-top: 85px;
	padding-bottom: 180px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.index-catch-bg {
	background: url(../images/bg-logo-01.png) right -65px no-repeat;
}

.index-catch-title {
	font-size: 3.0rem;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.3em;
	margin-bottom: 38px;
}

.index-catch-text {
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.3em;
	line-height: 1.8;
}

/* ここまでindexキャッチ・エリア */

/* ここからindexサービス・エリア */

.index-service-catch {
	text-align: center;
	font-size: 2.4rem;
	letter-spacing: 0.3em;
	
	margin-bottom: 15px;
	font-weight: normal;
}

.index-service-margin-top {
	margin-top: -42px;
}

.index-service-padding {
	padding-top: 62px;
	padding-bottom: 72px;
}

/* ------------------------ */

.index-water,
.index-wall {
    /*margin-bottom: 236px;*/
}

.index-water {
	margin-bottom: 80px;
}

.content-inner-y {
    padding-top: 80px;
    padding-bottom: 80px;
}

.container {
    /*max-width: 1140px;*/
	max-width: 1160px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.align-items-center {
    align-items: center;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.order-lg-1 {
    order: 1;
}

.order-lg-2 {
    order: 2;
}

.pos-r {
    position: relative;
}

.ds-content {
    background-color: #fff;
    padding: 40px 50px;
    filter: drop-shadow(-44px 50px 40px rgba(0, 0, 0, .05));
	
	height: 446px;
}

.index-service-en {
	font-family: 'Abel', sans-serif;
	font-size: 3.6rem;
	color: #d1dfe6;
	line-height: 1.0;
	position: relative;
	padding-left: 94px;
	margin-bottom: 50px;
}

.index-service-en:before {
    content: "";
    position: absolute;
    border-top: 1px solid;
    width: 80px;
    left: 0;
    top: 17px;
}

.index-service-jp {
	color: #0075c2;
	font-size:2.4rem;
	font-weight: bold;
}

.index-service-flex {
	display : flex;
	flex-direction : column;
	justify-content : space-between;
	flex-wrap : wrap;
	height: 100%;
}

.index-service-text {}

.index-service-btn {}


.index-water .bg,
.index-wall .bg  {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 108%;
    position: absolute;
    height: 550px;
    top: -275px;
}

.index-water .bg {
    background-image: url(../images/img01.jpg);
    right: 0;
}

.index-wall .bg {
    background-image: url(../images/img02.jpg);
    left: 0;
}




/* ここまでindexサービス・エリア */

.inner,
.index-service-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}


.bg-01 {
	background: #8edcf2; /*スカイブルー*/
}

.bg-02 {
	background: #f2f2f4; /*薄いグレー*/
}

.bg-03 {
	background: #f5f8fa; /*薄い青*/
}

.mb-1em {
	margin-bottom: 1em;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-200 {
	margin-bottom: 200px;
}

.pb-70 {
	padding-bottom: 70px;
}

.text-center {
	text-align: center;
}

.text-center-pc {
	text-align: center;
}

.news-wrap {
	margin-bottom: 40px;
}

.news-item {
	color: #000;
	font-size: 1.6rem;
	line-height: 1.4;
	display: block;
	width: 100%;
	border-bottom: 1px solid #dfdfdf;
	padding: 24px 10px 20px 0;
	transition: 0.3s linear;
}

.news-item:hover {
	color: #6ba3c6;
	transition: 0.3s linear;
}


.news-item dl {
	display: flex;
}

.news-item dt {
	display: flex;
	width: 13%;
}

.news-item dd {
	width: 87%;
}

/* ここからノーマルのボタン用 */
		
	.button:after, .button:before {
    position: absolute;
    content: "";
    display: block;
    background-color: #0075c2;
}
		
		.button:after {
    top: 50%;
    right: -20px;
    width: 60px;
    height: 1px;
    -webkit-transition: all .25s ease .05s;
    transition: all .25s ease .05s;
}
		
		.button:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease,-webkit-transform .25s ease;
}
	
	.button {
    position: relative;
    display: inline-block;
    background-color: #fff;
    width: 280px;
    height: 58px;
    border: 1px solid #0075c2;
    /*color: inherit!important;*/
		color: #0075c2;
    letter-spacing: .01em;
    text-decoration: none;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
    cursor: pointer;

}
		
		.button:hover {
    color: #fff!important;
}
		
		.button:hover:before {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-origin: left;
    transform-origin: left;
}
		
		.button:hover:after {
    width: 20px;
    background-color: #fff;
    -webkit-transform: translate(-40px);
    transform: translate(-40px);
}
		
		.button-text {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 4px 0 0;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 2.3;
    z-index: 1;
}
		
		.button-small {
    width: 240px;
}

/* ここまでノーマルのボタン用 */

.index-heading-en {
	display: block;
    text-align: center;
    font-size: 4.8rem;
    font-family: 'Abel', sans-serif;
    letter-spacing: .28em;
    line-height: 1.0;
	margin-bottom: 10px;
}

.index-heading-jp {
	display: block;
	text-align: center;
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: .3em;
	line-height: 1.0;
}

.contact-margin-top {
	margin-top: -42px;
}

.contact-padding {
	padding-top: 62px;
	padding-bottom: 100px;
}

.contact-text {
	line-height: 1.8;
	letter-spacing: .3em;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 35px;
}

/* ここから「お問い合わせはこちらから」ボタン用 */

.button-plate {
    position: relative;
    display: inline-block;
    text-decoration: none;
	color: #000;
	font-size: 1.8rem;
	margin-bottom: 37px;
}
		
		.button-plate-inner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 458px;
    height: 76px;
    border: 1px solid #0075c2;
    background-color: #fff;
}
		
		.button-plate-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0075c2;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease,-webkit-transform .25s ease;
}
		
		.button-plate-text {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}
		
		.button-plate:hover .button-plate-text {
    color: #fff;
}
		
		.button-plate:hover .button-plate-inner:before {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.envelope-target {
	position: relative;
}

.envelope-target:before {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2em;
	margin: auto;
	width: 20px;
	height: 15px;
	background-image: url(../images/icon-envelope-bl.svg);
	background-position: 0 -15px;
}

.button-plate:hover .envelope-target:before {
	background-image: url(../images/icon-envelope-wh.svg);
}

.arrow-target {
	position: relative;
}

.arrow-target:after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 3.5em;
	margin: auto;
	width: 8px;
	height: 12px;
	background-image: url(../images/arrow-01-blu.svg);
	background-position: 0 -12px;
}

.button-plate:hover .arrow-target:after{
	background-image: url(../images/arrow-01-wh.svg);
}
		
/* ここまで「お問い合わせはこちらから」ボタン用 */


.contact-tel {
	display: block;
	font-size: 2.8rem;
	color: #000;
	text-align: center;
	font-weight: bold;
	letter-spacing: .075em;
	line-height: 1.0;
	margin-bottom: 12px;
}

.contact-time {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.4;
}


.pagetop-btn-wrap {
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 33px;
}

.pagetop-btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	display: block;
	background: #8e8a8a;
	color: #fff;
	line-height: 40px;
	height: 40px;
	width: 154px;
	text-align: center;
	transition: 0.3s linear;
}

.pagetop-btn:hover {
	background: #c9c9c9;
	transition: 0.3s linear;
}

.footer-link-wrap {
	font-size: 1.4rem;
	margin-bottom: 70px;
}

.footer-link {
	margin-bottom: 7px;
}

.footer-link li {
	display: inline-block;
	padding-right: 38px;
}

.footer-link li:last-child {
	padding-right: 0;
}

.footer-link li a {
	color: #000;
	transition: 0.3s linear;
}

.footer-link li a:hover {
	opacity: 0.5;
	transition: 0.3s linear;
}

.footer-main {
	text-align: center;
}

.footer-info {
	font-size: 1.4rem;
	padding-bottom: 32px;
}

.footer-name {
	line-height: 1.0;
	padding-bottom: 10px;
	font-weight: bold;
}

.footer-address {
	line-height: 1.8;
}



.footer-copy {
	font-size: 14px ;
	line-height: 1.0;
	text-align: center;
	padding: 40px 20px;
}


/* サブページ　パンくずリスト用 */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    font-size: 1.2rem;
	margin-bottom: 50px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #ccc;
    content: "/";
}

/* サブページ　ページタイトル用 */
.sub-title-wrap {
	background: url(../images/bg-logo-01.png) 70vw -65px #f2f2f4 no-repeat;
	margin-top: 62px;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sub-title {
	font-size: 3.0rem;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/* サブページ　セクションのタイトル用 */

.sub-section-title {
	font-size: 2.6rem;
	font-weight: bold;
	margin-bottom: 60px;
}

/* サブページ　セクションが青背景の場合の調整用 */

.sub-adjust-padding {
    padding-top: 80px;
    padding-bottom: 100px;
}

.sub-adjust-margin-top {
    margin-top: -80px;
}

#contact .sub-adjust-padding {
    padding-top: 80px;
    padding-bottom: 50px;
}

/* サブページ　会社概要用 */

.table-01 {
	width: 100%;
}

.table-01 tr {
	border-top: 1px solid #e0e0e0;
}

.table-01 th {
	text-align: left;
	vertical-align: top;
	/*max-width: 20%;*/
	width: 20%;
}

.table-01 th,
.table-01 td {
	padding: 25px 35px;
	line-height: 1.8;
}

.table-01 li {
	margin-left: 1.5em;
}

/* お問い合わせページ用 */

.contact-tel-num {
    display: block;
    color: #0075c2;
    text-decoration: none;
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 1.0;
    margin-bottom: 10px;
	/*margin-left: 62px;*/
}

.contact-tel-target {
	position: relative;
}

.contact-tel-target:after {	
	content: "";
	background-image: url(../images/tel.svg);
	background-repeat: no-repeat;
	width: 52px;
	height: 52px;
	position: absolute;
	top: 0;
	left: -62px;
}

.contact-tel-time {
	color: #0075c2;
	font-weight: bold;
}

/* お問い合わせページ　フォーム用 */

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact-form-wrap {
    max-width: 980px;
    /*background: #fff;
    border-radius: 20px;*/
	margin: auto;
    padding: 80px 0 50px 0;
}

label {
	display: flex;
	margin: 0 0 0 0;
	font-weight:bold;
	font-size: 14px;
	color: #000;
	justify-content: space-between;
	padding-top: 4px;
}

.form-title {
	display: block;
	line-height: 20px;
	font-size: 1.6rem;
}

.necessary {
	color: #fff;
	font-size: 11px;
	background: #0075c2;

	
	margin-right: 2em;
	
	padding: 0;
	display: block;
	line-height: 20px;
	height: 20px;
	width: 48px;
	text-align: center;
	border-radius: 2px;
	
	font-weight: normal;
}

.optional {
	color: #fff;
	font-size: 11px;
	background: #c5c5c5;
	margin-right: 2em;
	
	padding: 0;
	display: block;
	line-height: 20px;
	height: 20px;
	width: 48px;
	text-align: center;
}

/*input.form-control[type="text"],*/
input.form-control[type="email"],
textarea.form-control {
	width: 100%;
}

textarea.form-control {
	height: 120px;	
}

textarea.wpcf7c-conf,
input.wpcf7c-conf {
	background-color: #f1f3f4;
}

.consent {
	padding-top: 16px;
	padding-bottom: 8px;
	background: #fcc;
	margin-bottom: 20px;
}

.send {
	margin: 40px 0 40px 0;
	text-align: center;
}

.send .btn {
	width: 50%;
}

dl.my-form:after {
	content: "";
	display: block;
	clear: both;
}

dl.my-form {
	/**zoom: 1;*/
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
	
	width: 100%;
	display: flex;
}

dl.my-form dt {
	width: 30%;
}

dl.my-form dd {
	width: 70%;
}

dd.radio {
	text-align: left;
	font-size: 13px;
}

input {
    vertical-align: bottom;
}

.acceptance {
	background: #feecec;
	padding: 15px 10px;
	/*margin-bottom: 60px;*/
}

.acceptance input {
	vertical-align: top;
}


.wpcf7-list-item-label {
	padding-top: 4px;
}

.my-form-btn-wrap {
	text-align: center;
}

/*
input[type="submit"][disabled],
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:focus {
	
	cursor:not-allowed;
	
	
	display: inline-block;
    width: 226px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    color: #ccc;
    text-align: center;
    background-color: #f1f1f1;
	
	font-size: 128%;
    font-weight: 600; 
	  
	transition: color, .3s; 

	border: 1px solid #ddd;
	
}
*/

input[type="submit"][disabled],
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:focus {
	display: inline-block;
    background-color: #fff;
    width: 280px;
    height: 58px;
    border: 1px solid #ccc;
	color: #ccc;
    letter-spacing: .01em;
    text-decoration: none;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    cursor: not-allowed;
	
	text-align: center;
	
	background: #fff url(../images/arrow-01-gray.svg) 90% center no-repeat;
	background-size: 8px 12px;
}

input[type="submit"],
input[type="button"] {
	
    position: relative;
    display: inline-block;
    background-color: #fff;
    width: 280px;
    height: 58px;
    border: 1px solid #0075c2;
    /*color: inherit!important;*/
	color: #0075c2;
    letter-spacing: .01em;
    text-decoration: none;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    cursor: pointer;
	
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
	border-color: #0075c2; 
	background-color: #0075c2;
    box-shadow: none;
    color: #fff;
}

input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
	padding: 0;
	border: none;
}

input[type="submit"] {
	background: #fff url(../images/arrow-01-blu.svg) 90% center no-repeat;
	background-size: 8px 12px;
	
}

input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #0075c2 url(../images/arrow-01-wh.svg) 90% center no-repeat;
	background-size: 8px 12px;
	border-color: #0075c2; 
	color: #fff;
}

input[type="button"] {
	margin-right: 40px;
	background: #fff url(../images/arrow-02-blu.svg) 10% center no-repeat;
	background-size: 8px 12px;
}

input[type="button"]:hover,
input[type="button"]:focus {
	background: #0075c2 url(../images/arrow-02-wh.svg) 10% center no-repeat;
	background-size: 8px 12px;
	border-color: #0075c2; 
	color: #fff;
}

/*input[type="button"] {


	
	display: inline-block;
    width: 226px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    font-size: 128%;
    font-weight: 600;
    transition: color, .3s;
    cursor: pointer;
    border: 1px solid #6fbc4d;
    margin-right: 40px;
    background: #6fbc4d url(../images/arrow-left.png) 20px center no-repeat;

}


input[type="button"]:hover,
input[type="button"]:focus {
	

	border-color: #39b102;
	background-color: #39b102;
    box-shadow: none;
    color: #fff;
}

input[type="button"]::-moz-focus-inner {
	padding: 0;
	border: none;
}*/


.wpcf7c-elm-step2 {
    color: #f00;
    text-align: center;
    margin-top: 20px;
}

.privacy {
  padding: 10px;
  border: 1px solid #ccc;
  margin: 20px 0;
  height: 200px;
  width: 100%;
  overflow: auto;
	background: #fff;
}

.privacy-title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

.privacy dt {
	font-weight: bold;
}

.privacy dd {
	margin-bottom: 10px;
	line-height: 1.6;
}

/* ニュース一覧ページ用 */

.pagenav-wrap {
	display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.previous-next {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}



/* ニュース詳細ページ用 */

.news-section-title {
	position: relative;
    margin-bottom: 10px;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid #ccc;
    letter-spacing: 0.1em;
    font-size: 2.6rem;
	font-weight: bold;
	
}

.news-section-title:before {
    content: '';
    position: absolute;
    top: 34px;
    left: 4px;
    width: 16px;
    height: 1px;
    background-color: #0075c2;
}

.news-info-wrap {
	margin-bottom: 30px;
}

.news-date {
	font-weight: bold;
}

.news-cat-wrap {
	display: flex;
}

.news-cat-wrap li {
	display: block;
	padding: 4px 20px;
	background: #f5f8fa;
	font-size: 1.4rem;
	margin-right: 10px;
}

.news-cat-wrap li:last-child {
	margin-right: 0;
}


.news-main-wrap {
	max-width: 960px;
	font-size: 1.6rem;
	line-height: 1.8;
	margin: 0 auto;
}

.news-main-wrap img {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
}

.news-main {
	margin-bottom: 50px;
}

.previous-next-item {
	/*width: 48%;*/
}

/* サブページ　コンテンツ用 */

.my-row {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
	justify-content: space-between;
}

.my-middle {
    align-items: center;
}

.my-col-4,.my-col-6,.my-col-8 {
	flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.my-col-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.my-col-6 {
    flex-basis: 50%;
    max-width: 50%;
    flex: 0 0 auto;
}

.my-col-8 {
    flex-basis: 66.66666666%;
    max-width: 66.66666666%;
}

.my-order-1 {
	order: 1;
}

.my-order-2 {
	order: 2;
}

.sub-title-01 {
	font-size: 1.6rem;
	font-weight: bold;
    border-bottom: 1px dotted #444;
    margin-bottom: 4px;
}

.sub-title-02 {
	font-size: 1.8rem;
	font-weight: bold;
    /*border-bottom: 1px dotted #444;*/
    margin-bottom: 4px;
	text-align: center;
}

.sub-title-03 {
	font-size: 1.8rem;
	font-weight: bold;
    border-bottom: 1px dotted #444;
    margin-bottom: 8px;
}

.deterioration-item {
	/*background: #fff;*/
}

.deterioration-item-text {
	padding: 10px;
	/*min-height: 200px;*/
}

/* 工法用 */

.method-wrap {}

.method-item {
	margin-bottom: 20px;
}

.method-item:last-child {
	margin-bottom: 0;
}

.method-item img {
	max-width: 540px;
}

.location-wrap,
.feature-wrap {}

.location-item,
.feature-item {
	margin-bottom: 20px;
}

.location-item:last-child,
.feature-item:last-child {
	margin-bottom: 0;
}


/* 施工事例用 */

.cases-wrap {
	max-width: 980px;
	margin: 0 auto;
}

.cases-item {
	margin-bottom: 40px;
}

.cases-item:last-child {
	margin-bottom: 0;
}

.cases-item-title {
	margin-bottom: 20px;
}

.cases-beforeafter {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.cases-beforeafter:after {
	position: absolute;
	display: block;
	content: "";
	background-image: url(../images/arrow-01-skyblu.svg);
	width: 31px;
	height: 47px;
	top: calc(50% - 47px);
	left: calc(50% - 15px);
}

.cases-pic {
	width: 38%;
}

.cases-pic-cap {
	text-align: center;
}

/* 「ビルドテックは迅速に対応いたします」用 */

.yellow_line {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #fff45c 0%) repeat scroll 0 0;
}

.splash-text {
	font-size: 1.8rem;
	text-align: left;
	margin-bottom: 30px;
}

/*.splash-pic {
	width: 50%;
	margin: 0 auto;
}*/

@media screen and (max-width: 767px){
	.pc-only { display: none; }
	
	.gnav_btn {display: block;}
	
	p {
		font-size: 1.2rem;
	}
	
	.pb-70 {
		padding-bottom: 35px;
	}
	
	.mb-40 {
		margin-bottom: 20px;
	}
	
	
	.mb-50 {
		margin-bottom: 25px;
	}
	
	.mb-100 {
		margin-bottom: 50px;
	}
	
	.mb-200 {
		margin-bottom: 100px;
	}
	
	.text-center-pc {
		text-align: left;
	}
	
	.button {
		width: 210px;
		height: 44px;
	}
	
	.button-text {
		font-size: 1.2rem;
	}
	
	.index-heading-en {
		font-size: 3.0rem;
	}
	
	.index-heading-jp {
		font-size: 1.2rem;
	}
	
	.header-inner {
		height: 48px;
		background: #fff;
	}
	
	.header-logo {
		margin: 9px 0 0 9px;
	}
	
	.header-logo-img {
		width: 196px;
		height: 30px;
	}
	
	.logo-color {
		background-image: url(../images/logo-bl.png);
	}
	
	.header-menu {
		display: none;
	}
	
	.gnav-sp {
		display: block;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      padding-top: 64px;
      padding-bottom: 80px;
      overflow: auto;
      pointer-events: none;
		color: #fff;
      transition: .4s ease-out;
		text-align: left;
    }
	
	.gnav-sp a {
		color: #fff;
		display: block;
		width: 100%;
		line-height: 2.5;
	}

    header.active .gnav-sp {
      opacity: 1;
      pointer-events: all;
      background: #0075c2;	
		
    }
	
	.gnav-sp-item a {
		padding: 0 10px;
		border-bottom: 1px solid #fff;
	}
	
	.gnav-sp-item span {
		width: 100%;
		display: block;
		padding: 0 10px;
		border-bottom: 1px solid #fff;
		line-height: 2.5;
	}
	
	.gnav-sp-item-inner li a {
		padding-left: 30px;
		border-bottom: 1px dotted #fff;
	}
	
	.gnav-sp-item-inner li:last-child a {
		border-bottom: 1px solid #fff;
	}
	
	.main-img .main-img-pc {
		display: none;
	}

	.main-img .main-img-sp {
		display: block;
		width: 100%;
		height: auto;
	}
	
	.index-hero-catch {
		top: 40%;
	}
	
	.index-hero-title {
		font-size: 2.4rem;
		border-bottom: none;
		position: relative;
	}
	
	.index-hero-title:after {
		display: block;
		position: absolute;
		content: "";
		background: #fff;
		height: 2px;
		width: 280px;
		margin-top: 5px;
	}
	
	.index-hero-text {
		font-size: 1.2rem;
		padding-top: 5px;
	}
	
	
	/* トップページ　サービス（スマホ） */
	
	.index-service-margin-top {
		margin-top: -32px;
	}
	
	.index-service-catch {
		font-size: 1.6rem;
	}
	
	.content-inner-y {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.index-water,
	.index-wall {
		margin-bottom: 0;
	}
	
	.index-water .bg,
	.index-wall .bg {
		top: 0;
		width: 100%;
		height: 200px;
		position: relative;
		z-index: 1;
	}
	
	.row {
		display: block;
	}
	
	
	.container {
		width: 100%;
		padding-right: 10px;
		padding-left: 10px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.col-lg-6 {
		max-width: 100%;
		display: block;
	}
	
	.ds-content {
		padding: 15px;
		height: 100%;
	}
	
	.index-service-text {
		margin-bottom: 20px;
	}
	
	.index-service-en {
		font-size: 1.8rem;
		padding-left: 60px;
		margin-bottom: 10px;
	}
	
	.index-service-en:before {
		width: 50px;
		top: 11px;
	}
	
	.index-service-jp {
		font-size: 1.6rem;
		margin-bottom: 15px;
	}
	
	.index-service-flex {
		flex-direction: row;
	}
	
	.index-service-btn {
		margin: auto;
	}
	
	/* トップページ　キャッチエリア（スマホ） */
	
	.index-catch-area {
		padding-top: 40px;
		padding-bottom: 90px;
	}
	
	.index-catch-title {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	
	.index-catch-text {
		text-align: left;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	
	/* トップページ　ニュース一覧（スマホ） */
	
	.news-item {
		font-size: 1.2rem;
		padding: 12px 5px 10px 0;
	}
	
	.news-item dl {
		flex-direction: column;
	}
	
	.news-item dt {
		display: block;
		width: 100%;
		margin-bottom: 5px;
	}
	
	.news-item dd {
		display: block;
		width: 100%;
	}
	
	.contact-margin-top {
		margin-top: -32px;
	}
	
	.contact-padding {
		padding-bottom: 50px;
	}
	
	.contact-text {
		font-size: 1.2rem;
		margin-bottom: 16px;
	}
	
	.contact-tel {
		font-size: 2.0rem;
	}
	
	.contact-time {
		font-size: 1.2rem;
		line-height: 1.4;
	}
	
	.button-plate {
		display: block;
		text-decoration: none;
		color: #000;
		font-size: 1.4rem;
		margin-bottom: 18px;
	}
	
	.button-plate-inner {
		width: 100%;
		height: 58px;
	}

	.button-plate-text {
		font-size: 1.4rem;
	}
	
	.arrow-target:after {
		right: 1em;
	}
	
	.pagetop-btn {
		line-height: 40px;
		height: 40px;
		width: 100%;
	}
	
	.footer-link-wrap {
		display: none;
	}
	
	.footer-copy {
		font-size: 12px;
		padding: 20px 10px;
	}
	
	/* サブページ　ページタイトル用（スマホ） */
	
	.sub-title-wrap {
		margin-top: 48px;
		height: 120px;
		
		background: #f2f2f4 url(../images/bg-logo-01-sp.png) 0 0 no-repeat;
		background-size: cover;
	}
	
	.sub-title {
		font-size: 1.8rem;
	}
	
	.sub-section-title {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
	
	.sub-adjust-padding {
		padding-top: 45px;
		padding-bottom: 50px;
	}
	
	.sub-adjust-margin-top {
		margin-top: -45px;
	}
	
	#contact .sub-adjust-padding {
		padding-top: 45px;
		padding-bottom: 25px;
	}
	
	.table-01 th,
	.table-01 td {
		padding: 12px;
		font-size: 1.2rem;
	}
	
	.table-01 th {
		width: 80px;
	}
	
	/* お問い合わせページ用（スマホ） */
	
	.contact-tel-num {
		font-size: 3.2rem;
		/*margin-left: 42px;*/
	}
	
	.contact-tel-target:after {
		width: 40px;
		height: 40px;
		left: -42px;
	}
	
	/* お問い合わせページ　フォーム用 （スマホ）*/
	
	.contact-form-wrap {
		padding: 40px 0 25px 0;
	}
	
	dl.my-form {
		flex-direction: column;
		margin-bottom: 10px;
    	padding-bottom: 10px;
	}
	
	dl.my-form dt {
		width: 100%;
		margin-bottom: 10px;
	}
	
	label {
		justify-content: flex-start;
	}
	
	.form-title {
		font-size: 1.2rem;
		padding-right: 10px;
	}
	
	dl.my-form dd {
		width: 100%;
		font-size: 12px;
	}
	
	.privacy dt,
	.privacy dd {
		font-size: 1.2rem;
	}
	
	.privacy dd {
		line-height: 1.8;
	}
	
	input[type="button"] {
		margin-right: 0;
		margin: auto;
		margin-bottom: 10px;
	}
	
	input[type="submit"] {
		display: block;
		margin: auto;
	}
	
	/* ニュース一覧ページ用 */

	.pagenav-wrap {
		margin-bottom: 50px;
	}
	
	/* ニュース詳細ページ用 */
	
	.news-section-title {
		padding: 8px 0 8px 35px;
		font-size: 1.6rem;
	}
	
	.news-section-title:before {
		top: 24px;
	}
	
	.news-cat-wrap li {
		font-size: 1.2rem;
	}

	.news-main-wrap {
		font-size: 1.2rem;
	}
	
	.previous-next {
		flex-direction: column;
	}
	
	.previous-next-item {
		width: 100%;
	}
	
	/* サブページ　パンくずリスト用 */

	.breadcrumb {
		margin-bottom: 10px;
	}

	/* サブページ　コンテンツ用 */

	.my-col-4 {
		flex-basis: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	.my-col-6 {
		flex-basis: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	.my-col-8 {		
		flex-basis: 100%;
		max-width: 100%;
	}

	.my-col-4:last-child,
	.my-col-6:last-child {
		margin-bottom: 0;
	}
	
	.my-order-1 {
		order: 2;
	}

	.my-order-2 {
		order: 1;
	}

	.sub-title-01 {
		font-size: 1.4rem;
	}

	.sub-title-02 {
		font-size: 1.4rem;
	}
	
	.sub-title-03 {
		font-size: 1.4rem;
	}
	
	.deterioration-item {
		/*margin-bottom: 20px;*/
	}

	.location-wrap,
	.feature-wrap {}
	
	.location-item,
	.feature-item {
		margin-bottom: 20px;
	}
	
	.location-item:last-child,
	.feature-item:last-child {
		margin-bottom: 0;
	}
	
	.location-detail,
	.feature-detail {
		margin-bottom: 20px;
	}
	
	.sub-btn-wrap {
		text-align: center;
	}

	/* 工法用 */

	.method-item img {
		max-width: 100%;
	}
	
	/* 施工事例用 */

	.cases-item {
		margin-bottom: 40px;
	}

	.cases-item:last-child {
		margin-bottom: 0;
	}

	.cases-item-title {
		margin-bottom: 20px;
	}

	.cases-beforeafter {
		flex-direction: column;
	}

	.cases-beforeafter:after {
		display: none;
	}

	.cases-pic {
		width: 100%;
	}

	.cases-pic:first-child {
		margin-bottom: 20px;
	}
	
	.cases-pic-cap {
		text-align: center;
	}
	
	/* 「ビルドテックは迅速に対応いたします」用 */

	.splash-text {
		font-size: 1.4rem;
		text-align: left;
		margin-bottom: 20px;
	}

	.splash-pic {
		width: 100%;
	}

}






/* 2020.01.08 テスト */
.justify-content-end {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}

.col-lg-6 {
	z-index: 3;
}	
	
.ds-content {
    margin-top: 52px;
    margin-bottom: 52px;
}
	
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
}
	
.content-inner-y {
    padding-top: 60px;
    padding-bottom: 60px;
}	

.container {
    max-width: 1140px;
}	
	
.about-bg-wrapper {
    position: absolute;
    width: 54%;
    height: 100%;
    right: 0;
}

.about-bg:before {
    content: "";
    position: absolute;
    top: 0;
    /*left: 0;*/
	right: 0;
    width: 100%;
    height: 100%;
	background-image: url(../images/img01.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.wall-bg-wrapper {
    position: absolute;
    width: 54%;
    height: 100%;
    left: 0;
}

.wall-bg:before {
    content: "";
    position: absolute;
    top: 0;
    /*left: 0;*/
	right: 0;
    width: 100%;
    height: 100%;
	background-image: url(../images/img02.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}	
	
.ov-h {
    overflow: hidden;
}
	
.scrt-cover {
    overflow-x: hidden;
    display: block;
}

.scrt-cover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    /*background-color: #f3f4f5;*/
    -webkit-transition: all .8s cubic-bezier(.77,0,.175,1);
    transition: all .8s cubic-bezier(.77,0,.175,1);
    -webkit-transition-timing-function: cubic-bezier(.77,0,.175,1);
    transition-timing-function: cubic-bezier(.77,0,.175,1);
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
	
	background-color: #fff;
}

.scrt-cover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #8edcf2;
    z-index: 2;
    -webkit-transition: all .8s cubic-bezier(.77,0,.175,1);
    transition: all .8s cubic-bezier(.77,0,.175,1);
    -webkit-transition-timing-function: cubic-bezier(.77,0,.175,1);
    transition-timing-function: cubic-bezier(.77,0,.175,1);
}

.scrt-cover.visible:after,
.scrt-cover.visible:before {
    right: -100%;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

.card {
    border: none!important;
    border-radius: 0;
    position: relative;
	
	top: 52px;
    max-width: 600px;
    margin-bottom: 120px;
}

/*#index--features .card {
	top: 52px;
    max-width: 600px;
    margin-bottom: 120px;
}*/

.card.card-shadow:before {
    content: "";
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%;
    height: 90%;
    z-index: 1;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 30px rgba(53,47,47,.15);
    box-shadow: 0 2px 30px rgba(53,47,47,.15);
    pointer-events: none;
}

.card.card-shadow .card-bg {
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

#index--features .card .card-bg .card-body {
    padding: 80px 60px;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 20px;
}

.d-none {
    display: none!important;
}	


@media screen and (max-width: 767px){
	
	.index-margin-adjust-01 {
		margin-top: 30px;
	}
	
	/*.inner {
		padding: 0 10px;
	}*/
	
	.index-service-inner {
		padding: 0 10px;
	}
	
	.content-inner-y {
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.container {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		margin-right: auto;
		margin-left: auto;
	}
	
	.about-bg-wrapper,
	.wall-bg-wrapper {
		width: 100%;
		height: 70%;
	}
	
	.wall-bg:before {
		background-size: auto;
		background-position: 50% 100%;
	}	
	
	.col-lg-6 {
		position: relative;
		display: block;
		flex: 0 0 100%;
	}
	
	.ds-content {
		margin-top: 260px;
		margin-bottom: 0;
		height: auto;
	}
	
	.card {
		margin-bottom: 0;
	}
	
	
}


/* 2020.02.28 tanaka added */

.footer-sns-area {
	position: relative;
	height: 100px;
	width: 100%;
	background: #fff;
}

.footer-sns-area .icon-insta {
	position: absolute;
	top: 50%;
	left: 50%;
	transform : translate(-50%,-50%);
}

.icon-insta {
	display: block;
	width: 30px;
	height: 30px;
	margin: auto;
}

.icon-insta img {
	width: 100%;
	height: 100%;
}

.icon-insta:hover img {
	opacity: 0.5;
	transition: 0.3s linear;
}







