﻿@charset "UTF-8";

/*=============================
		共通
=============================*/
body {
	-webkit-text-size-adjust: 100%;/* スマホレイアウト防止 */
	width: 100%;
    overflow-x: hidden;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	color:#000000;
	-webkit-font-smoothing: antialiased;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
img{max-width: 100%;
	height:auto;
	vertical-align:bottom;/* 隙間をなくす */
	}
.center{text-align: center;}
.right{text-align: right;}
li img,dt img,dd img{vertical-align:bottom;}/* 隙間をなくす */

/* box ------------------*/
.box{
	width: 90%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}
.box_maru{
	width: 90%;
	max-width:1000px;
	margin:0 auto 30px;
	overflow:hidden;
	box-sizing: border-box;
	background: #FFF;
	padding: 30px;
	border-radius: 20px;
}

@media screen and (max-width: 600px) {
.box_maru{padding: 20px;}
}


/* フェードイン ------------------*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/* PC表示・SP表示  ------------------*/
.pc { }
.sp { display:none;}
@media screen and (max-width: 600px) {
.pc{ display:none;}
.sp {display:block; }
}

/* ホバー  ------------------*/
.hover:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.hover2{background: #000;}
.hover2 img:hover{
	opacity: 0.9;	/* 小さくするほど暗くなります */
	transition-duration: 0.3s;
	padding:0px;
}

/*=============================
		リンク
=============================*/
a{ outline: none;}
a:link,
a:visited {
	color: #0B79C4;
	font-weight: normal;
}
a:hover,
a:active {
	text-decoration: none;
	color: #7C7C7C;
}
a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/*=============================
		header
=============================*/
header{
	width: 100%;
	margin-top: 0px;
	background: #FFFFFF;
}
.header_in{
	width: 95%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0PX;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_r{
	width: 65%;
	margin-top: 0px;
}
.logo{
	width: 30%;
	max-width: 300px;
	float: left;
}
.h_telmail{
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}
.h_telmail li{margin-left: 10px;}
.sp_tel{border: none !important;}


@media screen and (max-width:1000px){
.header_in{padding: 20px 15px 15px;}
.logo{max-width: 300px;width: 50%;}
ul.h_telmail{display: none;}
}

@media screen and (max-width:600px){
.header_in{padding: 10px 15px 10px;}
.logo{
	max-width: 350px;
	width: 70%;
	}
}

/* -------------------ヘッダーBTN　-------------- */
.mail_btn{
	background: #103F7E!important;
	padding: 7px 25px;
	letter-spacing: 1px;
	display: inline-block;
	color:#FFFFFF!important;
	font-size: 16px !important;
	font-weight: bold !important;
	transition: all .2s;/* ふんわり */
	text-decoration:none!important;
}
.mail_btn a:hove{
	background:#0B79C4;
}
.mail_btn:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.mail_btn i{padding-right: 5px;}


@media screen and (max-width:1000px){

}
/*SP メールボタン-----------------------------------------*/
.mail_sp{
border: none !important;
}
.mail_spbtn{
	background: #103F7E;
	padding: 1em 1em;
	font-size: 18px !important;
	font-weight: bold !important;
	width: 80%;
	margin: 20px auto 10px;
}
.mail_spbtn i{padding-right: 5px;}
.mail_spbtn a:link,
.mail_spbtn a:visited {
	color:#FFF!important;
	text-decoration:none;
}
.mail_spbtn li a:hover,
.mail_spbtn li a:active{
	color:#FFF!important;
}


/*=============================
		footer
=============================*/
footer{
	width: 100%;
	background:url("../img/base/bg2.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 50px;
}	

.f_logo{
	text-align:center;
	margin:0 auto 20px;
	max-width: 250px;
}
.f_txt{
	font-size: 14px;
	line-height: 250%;
	text-align: center;
	margin: 0px auto 50px;
}

.f_copy{
	color:#000;
	font-size:12px;
	text-align:center;
	padding:20px 0px 0px;
}

@media screen and (max-width: 600px) {
footer{
	width: 100%;
	background:url("../img/base/bg2_sp.jpg") no-repeat center top;
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 50px;
}
.f_logo{
	width:40%;
	margin:0 auto;
	padding:10px 0px 20px;
}
.f_txt{
	font-size: 12px;
	line-height: 200%;
	text-align: center;
	margin: 0px auto 10px;
}
.f_copy{
	font-size:9px;
	padding:15px 0px 0px;
}
}

/*fooder_menu（もくじ）-----------*/
ul.f_menu{
	margin-top:20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
ul.f_menu li{
	text-align:center;
	font-size: 12px;
	line-height:130%;
	padding:0px 10px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
ul.f_menu li i{padding-right: 5px;}

ul.f_menu li a:link,
ul.f_menu li a:visited,
ul.f_menu li a:hover,
ul.f_menu li a:active {
	color:#000;
	text-decoration:none;
}
@media screen and (max-width: 600px) {
	ul.f_menu{display:none;}
}

/*=============================
		BG
=============================*/
.bg_space{padding: 70px 0px;}/*スペースのみ*/
.bg1{/*背景白*/
  width: 100%;
  padding: 100px 0px;
}
.bg2{/*背景ひまわり*/
	background: url("../img/base/bg1.png") right top no-repeat #fff4cd;
	padding: 70px 0px;
}
@media screen and (max-width: 600px) {
.bg_space{padding: 50px 0px;}
.bg1{padding: 40px 0px;}
.bg2{
	background: url("../img/base/bg1_sp.png") right top no-repeat #fff4cd;
	padding: 60px 0px;
}
}

/*=============================
		文字
=============================*/
.S{
	font-size:16px;
	line-height: 190%;
	color: #000000;
}
.S2{
	font-size:18px;
	line-height: 190%;
	color: #000000;
}
.S b{font-weight: bold;}
.M{
	font-weight: bold;
	color: #0B79C4;
	font-size: 23px;
	line-height: 160%;
	margin-bottom: 10px;
}
.L{
	font-weight: bold;
	color: #6b4017;
	font-size: 25px;
	line-height: 150%;
	margin: 0px 0px 20px;
}
.point{color:#F84400;}
.point2{color:#F84400;}
.red{color:#d5115f;font-weight: bold;}
.pink{color:#ec5d6f;}
.green{color:#1f8515;}
.blue{color:#0B79C4;}
.white{color:#FFF;}
.marker{background: linear-gradient(transparent 0%, #ffff66 0%);}
.sen{background: linear-gradient(transparent 60%, #FFFA7E 0%);}

@media screen and (max-width: 600px) {/*PC*/
.S{font-size:12px;line-height: 180%;}
.S2{font-size:16px;line-height: 180%;}
.M{font-size:15px;line-height: 150%;}
.L{font-size:18px;line-height: 180%;}
}
/*=============================
		title
=============================*/
.title1{
	text-align: center;
	font-size:30px;
	color: #FFFF;
	background:  #103F7E;
	max-width: 1000px;
	width: 90%;
	padding: 10px;
	margin: 0 auto 50px;
}
.title{
	text-align: center;
	margin-bottom: 50px;
}
.title h2{/*青色*/
	color: #103F7E;
	font-size: 50px;
	letter-spacing: 1px;
	margin-bottom: 15px;
	border-bottom:  solid 2px #103F7E;
	display: inline-block;
}
.title p{/*青色*/
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #103F7E;
}
.title_h2_w{/*白色*/
	color: #FFFF!important;
	border-bottom:  solid 2px #FFFF!important;
}
.title_p_w{/*白色*/
	color: #FFFF!important;
}

@media screen and (max-width: 800px) {
	.title h2{font-size: 40px;}
	.title p{font-size: 20px;}
}

@media screen and (max-width: 800px) {
	.title h2{font-size: 40px;}
	.title p{font-size: 20px;}
	.title1{font-size: 25px;}
}


/*=============================
		title　（2nd用）
=============================*/

.title_2nd{
	font-family: 'Zen Antique', serif;/*google font*/
	color: #FFFFFF;
	background: #103F7E;
	font-size: 30px;
	padding: 5px 20px 10px;
	margin-bottom: 30px;
}
.title_2nd span{
	font-size: 20px!important;
	padding-left: 20px;
}

@media screen and (max-width: 800px) {
	.title_2nd{font-size: 30px;}
	.title_2nd span{font-size: 16px!important;}
}

@media screen and (max-width: 500px) {
	.title_2nd{font-size: 25px;}
}


/* タイトル文 --------------------*/
.t_text{
	margin-bottom:30px;
	line-height:130%;
	font-size:30px;
	font-weight:bold;
	color:#6e4318;
	text-align:center;
}
@media screen and (max-width: 800px) {/*タブレット*/
.t_text{/* タイトル文 */
	font-size:25px;
}
}


/*=============================
		PT ページタイトル
=============================*/

.pt{
	background:url("../vegas/slider1.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 130px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt2{
	background:url("../vegas/slider3.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 120px 0px 180px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt3{
	background:url("../vegas/slider4.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 120px 0px 180px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt4{
	background:url("../vegas/slider5.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 120px 0px 180px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt5{
	background:url("../vegas/slider6.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 120px 0px 180px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt:before,
.pt2:before,
.pt3:before,
.pt4:before,
.pt5:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3); /*半透明のフィルターをかける*/
}
.pt-inner {
  text-align: center;
  position: absolute;
  width: 100%;
}
.pt-inner h1{
	color: #FFFF!important;
	font-family: 'Zen Antique', serif;/*google font*/
	font-size: 45px;
	line-height: 160%;
	letter-spacing: 3px;
}
.pt-inner p{
	color: #FFF;
	font-size: 20px;
	line-height: 160%;
}

@media screen and (max-width: 600px) {
.pt,.pt2,.pt3,.pt4,.pt5{
	padding: 50px 0px 120px; /*背景画像の高さを確保*/
	background-attachment: scroll;
}
.pt-inner h1{font-size: 30px;}
.pt-inner p{font-size: 18px;}
}


/*=============================
	配置
=============================*/
.m10{margin:10px;}
.m20{margin:20px;}

.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb50{margin-bottom:50px;}
.mtb20{margin:20px 0px;}
.mt20{margin-top:20px;}


/*=============================
		ページTOPボタン
=============================*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
	right: 5%;
  bottom: 5%;
  background: #103F7E;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}



/*=============================
		ボタン（大）
=============================*/
.btn1{
	background-color:#103F7E;
	padding: 1.2em 3em;
	display: inline-block;
	text-decoration: none;
	font-size:18px;
	line-height: 130%;
	color:#FFFFFF!important;
	transition: all .2s;/* ふんわり */
}
.btn1 a:hover{
	color:#FFFFFF!important;
	text-decoration: none;
}
.btn1:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.btn1 i{padding-left: 10px;}

.btn_mini{
	padding: 1em 2em!important;
	font-size: 14px!important;
}
@media screen and (max-width: 600px) {
.btn1{
	font-size:14px;
	padding: 1em 3em;
	white-space: nowrap;
	}
.btn_mini i{padding-left: 3px!important;}
}
/*=============================
		ボタン（ブログ用）
=============================*/
.btn_blog{/* --------------------------白 */
	background-color:#0B79C4;
	padding: 1em 2em;
	display: inline-block;
	text-decoration: none;
	font-size:15px;
	line-height: 130%;
	color:#FFFFFF!important;
	transition: all .2s;/* ふんわり */
	margin-top: 30px;
}
.btn_blog a:hover{
	color:#FFFFFF!important;
	text-decoration: none;
}
.btn_blog:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.btn_blog i{padding-left: 10px;}

@media screen and (max-width: 600px) {
.btn_blog{
	font-size:14px;
	padding: 1em 3em;
	border-radius: 30px;
	}
}
/*=============================
		table
=============================*/
table.type01 {
	width:100%;
	margin:0 auto 30px;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	background-color:#FFFFFF;
    font-size:16px;
	line-height:140%;
}
table.type01 th {
	padding: 15px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	background: #f5f7f7;
	vertical-align:middle;
	text-align:center;
	white-space: nowrap;
}
table.type01 td {
	padding: 15px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	vertical-align:middle;
	text-align:left;
}
.nowrap{white-space: nowrap;}

@media screen and (max-width: 800px) {/*タブレット*/
table.type01{font-size:12px;}
table.type01 th br{display: block;}
table.type01 th,
table.type01 td{padding: 10px;}
}

/*=============================
		スライダーvegas
=============================*/
#vegas_box{
	width: 100%;
	height:700px;
	overflow:hidden;
	font-size:0;
}
.vegas_text{
	max-width: 800px;
	margin: 250px auto 0px;
	text-align: center;
	}
.vegas_text img{width: 100%;}

@media screen and (max-width: 1000px) {
#vegas_box{height:600px;}
.vegas_text{margin: 200px auto 0px;}
.vegas_text img{width: 80%;}
}
@media screen and (max-width: 800px) {
#vegas_box{height:500px;}
.vegas_text{margin: 180px auto 0px;}
}
@media screen and (max-width: 600px) {
#vegas_box{height:400px;}
.vegas_text{margin: 140px auto 0px;}
}

/*----------------------スクロールボタンの指定-------------------*/
.scroll{
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
  }
.scroll a{
    position: relative;
    display: inline-block;
    font-size: 20px;
	letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 0 0 50px;
	}
.scroll :before{/*矢印を作成する*/	
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      left: 0;
      right: 0;
      bottom: 25px;
      margin: auto;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      animation: move 2s infinite;
    }

@keyframes move {/*矢印をアニメーションする*/
  0% {
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    transform: rotate(45deg) translate(0, 0);
  }
}

@media screen and (max-width: 500px) {
.scroll{bottom: 20px;}
.scroll a{
    font-size: 15px;
    padding: 0 0 50px;
	}
}

/*=============================
		共通
=============================*/
.bg1{
	background:url(../img/base/bg1.png) repeat;
	margin-bottom:30px;
}
#main{
	width: 100%;
	padding: 100px 0px;
}
.p_top{
	padding-top: 50px;
}
.box{
	width: 95%;
	max-width:1000px;
	margin:0 auto;
	padding-bottom:30px;
	overflow:hidden;
	box-sizing: border-box;
}
.box_in{padding:10px 20px;}

@media screen and (max-width: 1000px) {
#main{padding: 50px 0px;}
.box{
	width: 90%;
	padding-bottom:30px;
}
.box_in{padding:10px 10px;}
}



/*=============================
		top
=============================*/
/*TOPごあいさつ(about)--------------------------*/
.top_about{
	width:100%;
	height: 800px;
	margin:200px auto;
	position: relative;
}
.about_img{
	width: 60%;
	position: absolute;
	z-index: 10;
	top: 0px;
	left: 0px;
}
.about_txt{
	width: 50%;
	position: absolute;
	top: 150px;
	right: 0px;
	background: #F5F5F5;
	padding: 100px 100px 50px;
}
.about_txt p{
	font-size: 18px;
	line-height: 180%;
	padding-bottom: 50px;
}
.about_txt h2{
	font-size: 35px;
	font-weight: bold;
	padding-bottom: 80px;
	text-align: right;
}
.about_btn{
	text-align: center;
	margin: 0 auto;
}


@media screen and (max-width: 1300px) {
.top_about{
	margin:150px auto;
	height: 900px;
	}
.about_img{width: 80%;}
.about_txt{
	width: 75%;
	top: 270px;
	right: 0px;
	background: #F5F5F5;
	padding: 150px 50px 50px;
}
.about_txt h2{
	padding-bottom: 50px;
	text-align: center;
	}
.about_txt h2 br{display: none;}
	
}

@media screen and (max-width: 1100px) {
.top_about{
	margin:120px auto;
	height: 800px;
	}
.about_txt{
	width: 85%;
	top: 180px;
	padding: 180px 50px 50px;
	}
.about_txt h2{font-size: 25px;}
.about_txt p{font-size: 18px;}
}

@media screen and (max-width: 800px) {
.top_about{
	margin:100px auto;
	height: 900px;
	}
.about_txt{
	width: 80%;
	top: 120px;
	padding: 130px 50px 50px;
	}
.about_txt h2{font-size: 25px;}
.about_txt h2 br{display: block;}
.about_txt p{font-size:d 16px;}
}

@media screen and (max-width: 600px) {
.top_about{
	margin:80px auto;
	height: 850px;
	}
.about_img{width: 90%;}
.about_txt{
	width: 75%;
	top: 100px;
	padding: 120px 50px 50px;
	}
.about_txt h2{
	font-size: 20px;
	padding-bottom: 30px;
	}
}

@media screen and (max-width: 500px) {
.top_about{
	margin:50px auto;
	height: 700px;
	}
.about_img{width: 90%;}
.about_txt{
	width: 80%;
	top: 80px;
	padding: 100px 30px 50px;
	}
.about_txt p{font-size: 14px;}
}


/* TOP施工実績 --------------------------------------------------*/
.top_works{
	padding: 150px 0px;
	background:url("../img/base/bg2.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
}
ul.works_box{
	display: flex;
	justify-content: space-between;
	max-width: 1300px;
	width: 90%;
	margin: 0 auto 50px;
}
ul.works_box li{
	width: 30%;
}
@media screen and (max-width: 1000px) {
.top_works{
	padding: 150px 0px;
}
}

@media screen and (max-width: 600px) {
.top_works{
	padding: 100px 0px;
	background:url("../img/base/bg2_sp.jpg") no-repeat center top;
	background-size:auto 100%; /*背景画像のサイズ指定*/
}
ul.works_box{
	flex-wrap: wrap;
	justify-content: center;
}
ul.works_box li{
	width: 90%;
	margin-bottom: 20px;
}	
}

/*TOPのお問い合わせ----------------------------------------------------*/
.top_contact{
	width:100%;
	padding:100px 0px;
	background:url("../img/base/bg1.jpg") no-repeat center center;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
}
ul.contact_btn{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
ul.contact_btn li{
	background: #FFFFFF;
	text-align: center;
	padding: 30px 0px 10px;
	width: 45%;
	border-radius: 20px;
	font-size: 20px;
	margin-bottom: 50px;
}
ul.contact_btn li i{
	font-size: 50px;
	color: #103F7E;
}
ul.contact_btn li a{
	text-decoration: none;
	color: #103F7E;
}
ul.contact_btn img{
	text-align: center;
	width: 80%;
	box-sizing: border-box;
	padding-bottom: 15px;
}
.contact_txt{
	font-size: 16px;
}
.contact_mail{
	font-size: 40px;
	font-family: 'Zen Antique', serif;/*google font*/
}

@media screen and (max-width: 800px) {
.top_contact{
	padding: 100px 0px 70px;
	background:url("../img/base/bg1.jpg") no-repeat center center;
}
ul.contact_btn{flex-wrap: wrap;}
ul.contact_btn li{width: 85%;margin-bottom: 30px;}
}
@media screen and (max-width: 500px) {
.contact_txt{font-size: 14px;}
.contact_mail{font-size: 30px;}		
}


/*会社概要----------------------------*/
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin:0 auto 50px;
	width: 100%;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* お問い合わせ -------------------------------------------*/
.contact_h2{
	max-width: 400px;
	margin: 0 auto 50px;
}
.contact_tel{
	margin: 30px auto 0px;
	max-width: 400px;
	width: 80%;
}
.mailbox{
	max-width: 850px;
	margin: 20px auto;
	padding: 30px;
	background: #FFFFFF;
	border: solid 2px #ccc;
}
.mail_br{display: none;}

@media screen and (max-width: 600px) {
.mailbox{padding: 10px;}
.mail_br{display: block;}
}


/* もくじ -------------------------------------------*/
.mokuji_box{
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
.mokuji_box li{
	margin: 0px 10px;
	color:#FFFFFF;
}
.mokuji{
	background:  #0B4898;
	padding: 1em 2em;
	border-radius: 40px;
	display: inline-block;
	text-decoration: none;
	font-size:18px;
	line-height: 130%;
	color:#FFFFFF;
	transition: all .2s;/* ふんわり */
}

.mokuji a:link,
.mokuji a:hover{
	color:#FFFF!important;
	text-decoration: none;
}
.mokuji :hover{
	color:#FFFFFF;
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}

@media screen and (max-width: 600px) {
	.mokuji{
		font-size: 16px;
		padding: 0.8em 1.5em;
		}
}


/* 事業内容 -------------------------------------------*/
.service_title_h2{
	font-size: 30px;
	text-align: center;
	margin: 0 auto 20px;
	max-width: 800px;
	width: 90%;
}
.service_title_txt{
	font-size: 16px;
	line-height: 200%;
	text-align: center;
	margin: 0 auto 50px;
	max-width: 800px;
	width: 90%;
}
.service_box{
	background: #F5F5F5;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto 50px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 30px 0px;
}
.service_box2{
	flex-direction: row-reverse;
}
.service_img{width: 40%;}
.service_txt{width: 50%;}
.service_txt h2{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 30px;
	background: #FFF;
	padding: 5px 30px;
	display: inline-block;
}
.service_txt p{
	font-size: 17px;
	line-height: 200%;
	padding-left: 15px;
}

@media screen and (max-width: 800px) {
.service_box{
	margin: 0 auto 50px;
	flex-wrap: wrap;
	padding: 30px 0px;
}
.service_img{width: 80%;}
.service_txt{
	width: 90%;
	margin-bottom: 30px;
	}
	
}
@media screen and (max-width: 600px) {
.service_title_h2{
	font-size: 23px;
	margin: 0 auto 20px;
	width: 90%;
}
.service_title_txt{
	font-size: 14px;
	line-height: 180%;
	margin: 0 auto 50px;
	width: 90%;
}
	
.service_txt h2{
	font-size: 20px;
	margin-bottom: 20px;
	padding: 5px 30px;
}
.service_txt p{
	font-size: 14px;
	line-height: 180%;
	padding-left: 15px;
}

}



/* 施工事例 -------------------------------------------*/
ul.works{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
ul.works li img{
	object-fit: cover; /* トリミング */
	width: 400px;
	height: 300px;
}
.ya i{
	font-size: 50px;
	color:  #103F7E;
	padding: 0px 20px;
}
.ya_no{
	padding: 20px;
}
.before{color: #103F7E;}
.after{color: #E73278;}


@media screen and (max-width: 900px) {
ul.works{font-size: 25px;}
ul.works li img{
	width: 350px;
	height: 250px;
}
.ya i{font-size: 30px;padding: 0px 10px;}	
}

@media screen and (max-width: 800px) {
ul.works li img{height: 200px;}
}
@media screen and (max-width: 600px) {
ul.works li img{height: 180px;}
}
@media screen and (max-width: 500px) {
ul.works li img{height: 150px;}
.ya_no{
	padding: 10px;
}
}