﻿@charset "UTF-8";

/*=============================
		共通
=============================*/
body {
	-webkit-text-size-adjust: 100%;/* スマホレイアウト防止 */
	margin: 0px;
	padding: 0px;
	color:#272828;
	-webkit-font-smoothing: antialiased;
	font-family: 'Kosugi Maru', sans-serif!important;
}
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:1200px;
	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: bold;
	text-decoration: none;
}
a:hover,
a:active {
	text-decoration: none;
	color: #0B79C4;
	font-weight: bold;
}
a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}


/*smoothスライダー-------------------------------------------*/
#smooth{
	width: 100%;
}
#makeMeScrollable { 
	width:100%;
	position: relative; 
	}
#makeMeScrollable p{
	position: relative;
	 width:280px;
	 margin:10px;
	 float: left;
	 padding: 0;
}
#makeMeScrollable div.scrollableArea img {
	object-fit: cover; /*トリミング*/
	width: 100%;
	aspect-ratio: 2 / 2.2;
	 }

@media screen and (max-width: 800px) {
#makeMeScrollable p{
	width:250px;
}
}
@media screen and (max-width: 600px) {
#makeMeScrollable p{
	width:120px;
}
}


/*=============================
		header
=============================*/
header{
	width: 100%;
	margin-top: 0px;
	background: #FFFFFF;
}
.header_in{
	width: 95%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_r{
	width: 50%;
	margin-top: 0px;
}
.logo{
	max-width: 450px;
	width: 40%;
	margin-top: 20px;
}
.h_telmail{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 15px;
}
.h_tel{
	max-width: 350px;
	color: #3e3a39;
	text-align: center;
	padding-right: 15px;
}
.h_icon{
	max-width: 50px;
	padding: 0px 10px;
}


.sp_tel{border: none !important;}

@media screen and (max-width:1000px){
.header_in{padding: 10px 0px 15px;}
ul.h_telmail{display: none;}
.logo{
	width: 50%;
	margin-top: 15px;
	}
.header_r{
	width: 30%!important;
}
}

@media screen and (max-width:600px){
.header_in{
	width: 95%;
	padding: 10px 0px 10px;
	}
.logo{
	width: 70%;
	margin: 0px 0px 10px;
	}
}

/* -------------------ヘッダーBTN　/フェイズでも使用-------------- */
.mail_btn{
	background: #EF7557!important;
	padding: 7px 25px;
	letter-spacing: 1px;
	border-radius: 40px;
	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:#FB8E73!important;
}
.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: #EF7557;
	padding: 1em 1em;
	font-size: 18px !important;
	font-weight: bold !important;
	border-radius: 60px;
	margin-top: 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%;
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 50px;
	background: #efefef;
}	

.f_logo{
	text-align:center;
	margin:0 auto 50px;
	max-width: 350px;
}
.f_txt{
	font-size: 14px;
	line-height: 200%;
	text-align: center;
	margin: 0px auto 50px;
}

.f_copy{
	color:#272727;
	font-size:12px;
	text-align:center;
	padding:20px 0px 0px;
}

@media screen and (max-width: 600px) {
footer{
	width: 100%;
	overflow: hidden;
	padding-bottom:5px;
	padding-top: 30px;
	padding-bottom: 80px;
}
.f_logo{
	width:70%;
	margin:0 auto 0px;
}
.f_txt{
	font-size: 12px;
	line-height: 160%;
	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;
}
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:#272727;
	text-decoration:none;
}
@media screen and (max-width: 600px) {
	ul.f_menu{display:none;}
}

/*=============================
		スマホ版フッダーメニュー
=============================*/
.footer_bar{display: none;}

@media screen and (max-width: 700px) {
.footer_bar{
	position: fixed;
	bottom: 0px;
	display: block;
	background: #1d2088;
	width: 100%;
	z-index: 100;
}
.footer_bar ul{
	display: flex;
	justify-content: space-around;
}
.footer_bar ul li{margin: 0px 5px;}
.footer_bar ul li img{
	max-width: 60px;
	padding: 5px 0px 10px;
}
}


/*=============================
		BG
=============================*/
.bg_space{padding: 70px 0px;}/*スペースのみ*/
.bg1{
  	width: 100%;
	background: url("../img/base/bg3.jpg")no-repeat top center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	padding: 200px 0px 200px;
}
.bg2{/*ブルー*/
	background: #d7ecf4;
	padding: 200px 0px;
}
.all_box{padding: 150px 0px;}



@media screen and (max-width: 600px) {
.bg1{
  	width: 100%;
	background: url("../img/base/bg3_sp.jpg")no-repeat top center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	padding: 80px 0px;
}
.bg2{/*ブルー*/
	padding: 100px 0px;
}



.bg_space{padding: 50px 0px;}

.all_box{padding: 100px 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%, #FFF899 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
=============================*/
.title{
	text-align: center;
	margin-bottom: 50px;
}
.title h2{
	color: #1d2088;
	font-size: 50px;
	font-family: 'Zen Antique', serif;/*google font*/
	letter-spacing: 1px;
	margin-bottom: 15px;
	border-bottom:  solid 2px #1d2088;
	display: inline-block;
}
.title p{
	font-size: 23px;
	letter-spacing: 5px;
	color: #1d2088;
}

@media screen and (max-width: 800px) {
	.title h2{font-size: 40px;}
	.title p{font-size: 20px;}
}

/*-------黒バージョン-----------------------*/
.title-border h2{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	text-align:center;
	align-items: center;
	justify-content: center;
	font-size:50px;
	font-family: "Rubik", serif;
	letter-spacing:1px;
	color:#1d2088;
}
.title-border h2:before,
.title-border h2:after {
	border-top: 1px solid #1d2088;
	content: "";
	flex-grow: 1;
}
.title-border h2:before {margin-right: 2rem;}
.title-border h2:after {margin-left: 2rem;}

.title-border p{
	font-size: 20px;
	text-align: center;
	color:#1d2088;
	margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
	.title-border h2{font-size: 40px;}
	.title-border h2:before {margin-right: 1rem;}
	.title-border h2:after {margin-left: 1rem;}
}
@media screen and (max-width: 500px) {
	.title-border h2{font-size: 30px;}
	.title-border p{font-size: 16px;}
}

/*-------白バージョン-----------------------*/
.title-border_w h2{
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	text-align:center;
	align-items: center;
	justify-content: center;
	font-size:50px;
	font-family: "Rubik", serif;
	letter-spacing:1px;
	color:#FFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.title-border_w h2:before,
.title-border_w h2:after {
	border-top: 1px solid #FFF;
	content: "";
	flex-grow: 1;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.title-border_w h2:before {margin-right: 2rem;}
.title-border_w h2:after {margin-left: 2rem;}

.title-border_w p{
	font-size: 20px;
	text-align: center;
	color:#FFF;
	margin-bottom: 50px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 900px) {
	.title-border_w h2{font-size: 40px;}
	.title-border_w h2:before {margin-right: 1rem;}
	.title-border_w h2:after {margin-left: 1rem;}
}
@media screen and (max-width: 400px) {
	.title-border_w h2{font-size: 30px;}
	.title-border_w p{font-size: 16px;}
}

/* タイトル文--------------------*/
.title1{
	background: #85A858;
	font-size: 23px;
	font-family: 'Kosugi Maru', sans-serif; /* WEBフォント */
	color: #FFF;
	padding: 10px 10px 10px 30px;
	margin-bottom: 30px;
	box-sizing: border-box;
}
@media screen and (max-width: 800px) {
	.title1{font-size: 18px;padding: 10px 20px;}
}


/*=============================
		title　（2nd用）
=============================*/

.title_2nd{
	color: #FFFFFF;
	background: #1d2088;
	font-size: 24px;
	padding: 10px 20px;
	margin-bottom: 30px;
	text-shadow: 1px 2px 3px #000;
}


@media screen and (max-width: 600px) {
.title_2nd{
	font-size: 18px;
	margin-bottom: 0px;
}
}


/*=============================
		PT ページタイトル
=============================*/

.pt1{
	background:url("../vegas/slider9.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt2{
	background:url("../vegas/slider1.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt3{
	background:url("../vegas/slider2.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt4{
	background:url("../vegas/slider3.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt5{
	background:url("../vegas/slider4.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt6{
	background:url("../img/pt/pt6.jpg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 140px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt1:before,
.pt2:before,
.pt3:before,
.pt4:before,
.pt5:before,
.pt6:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.4); /*半透明のフィルターをかける*/
}
.pt-inner {
  text-align: center;
  position: absolute;
  width: 100%;
}
.pt-inner h1{
	color: #FFFF!important;
	font-family: "Rubik", serif;
	font-size: 45px;
	line-height: 160%;
}
.pt-inner p{
	color: #FFF;
	font-size: 20px;
	line-height: 160%;
}

@media screen and (max-width: 600px) {
.pt1,.pt2,.pt3,.pt4,.pt5,.pt6{
	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: #1d2088;
  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;
}
@media screen and (max-width: 800px) {
	#page_top{
		display: none;
	}
}



/*=============================
		ボタン　
=============================*/
.btn1{
	background-color:#1d2088;
	color:#FFF!important;
	padding: 1.5em 3em;
	border-radius: 60px;
	display: inline-block;
	text-decoration: none;
	font-size:20px;
	line-height: 130%;
	transition: all .2s;/* ふんわり */
}
.btn1 i{padding-left: 15px;}
.btn1 a:link,
.btn1 a:visited {
	color:#FFF!important;
	text-decoration: none;
}
.btn1:hover,
.btn1:active {
	opacity: 0.5;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
@media screen and (max-width: 600px) {
.btn1{font-size:16px;padding: 1em 2em;}
}/*600*/


/*=============================
		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: 20px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	background: #f5f7f7;
	vertical-align:middle;
	text-align:center;
	white-space: nowrap;
}
table.type01 th br{display: none;}
table.type01 td {
	padding: 20px;
	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:14px;}
table.type01 th,
table.type01 td{
	display: block;
	text-align: center;
	}
table.type01 th br{display: block;}
}

/*=============================
		スライダーvegas
=============================*/
#vegas_box{
	width: 100%;
	height:650px;
	overflow:hidden;
	font-size:0;
}
.vegas_text{
	width: 95%;
	margin: 130px auto 0px;
	text-align: center;
	}
.vegas_txt1{
	max-width: 750px;
	width: 85%;
	margin: 0 auto 20px;
}
.vegas_txt2{
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}
.vegas_pc{}
.vegas_sp{display: none;}

@media screen and (max-width: 600px) {
#vegas_box{height:450px;}
.vegas_text{margin: 50px auto 0px;}
.vegas_txt1{margin: 0 auto 10px;}

.vegas_pc{display: none;}
.vegas_sp{display: block;}
}

@media screen and (max-width: 400px) {
#vegas_box{height:400px;}
.vegas_text{margin: 80px auto 0px;}
.vegas_txt1{width: 90%;}
.vegas_txt2{width: 90%;}
}


/*----------------------スクロールボタンの指定-------------------*/
.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: 1000px) {
.scroll{
  bottom: 5px;
  text-align: center;
  }
}


/*=============================
		top
=============================*/
/*TOPごあいさつ(about)--------------------------*/
.top_about{
	width:90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1500px;
	margin: 0 auto;
}
.about_txt{width: 56%;}
.about_img{width: 40%;}
.about_txt h2{
	width: 90%;
	max-width: 650px;
	margin: 0 auto 30px;
}
.about_txt p{
	font-size: 18px;
	line-height: 180%;
}


@media screen and (max-width: 1300px) {
	.about_txt p{font-size: 16px;}
}

@media screen and (max-width: 1000px) {
	.top_about{
		flex-wrap: wrap;
		justify-content: center;
	}
	.about_txt{width: 100%;margin-bottom: 30px;}
	.about_img{width: 90%;}
	
}

@media screen and (max-width: 600px) {
	.top_about{padding: 50px 0px;}
	.about_txt h2{width: 100%;margin: 0 auto 15px;}
	.about_txt p{font-size: 13px;line-height: 160%;}
}

@media screen and (max-width: 400px) {
	.top_about{padding: 20px 0px;}
}

/*リスト--------------------------*/
ul.about_work{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
ul.about_work li{
	background: #1d2088;
	color: #FFF;
	padding: 10px;
	width: 20%;
	border-radius: 10px;
	text-align: center;
	font-size: 18px;
}
@media screen and (max-width: 600px) {
ul.about_work li{
	font-size: 16px;
	padding: 10px 0px;
	width: 23%;
	border-radius: 15px;
	}
}
@media screen and (max-width: 500px) {
ul.about_work{
	margin-bottom: 20px;
}
ul.about_work li{
	font-size: 14px;
	border-radius: 8px;
	}
}


/* TOP（選ばれる理由） -------------------------------------------*/
.top_about2{
	max-width: 1300px;
	width: 100%;
	background: url("../img/base/ie.png")no-repeat top center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	padding: 200px 0px 0px;
	margin: 100px auto 0px;
}
.top_about2 h2{
	max-width: 800px;
	width: 80%;
	margin: 0 auto 50px;
}
.e_box_all{
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	width: 95%;
	margin: 0 auto;
}
.e_box{
	background: #d5eaf1;
	border-radius: 20px;
	width: 48%;
	margin: 0 auto 30px;
	padding: 20px 20px 30px;
	box-sizing: border-box;
}
.e_box_txt{width: 100%;margin-bottom: 10px;}
.e_box_txt h2{
	font-size: 25px;
	width: 100%;
	margin: 0 auto 10px;
	color: #1d2088;
}
.e_box_txt p{font-size: 16px;padding: 10px;}
.e_box_img{width: 90%;margin: 0 auto;}

.circle_number {
	display: inline-block;
	width: 40px;
	height: 40px; 
	line-height: 40px; /* heightと同じ値にする */
	border: 1px solid black;
	border-radius: 50%;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;/* 数字を垂直方向にも中央に配置するための調整 */
	margin-right: 10px;
	background: #1d2088;
	color: #FFF;
}

@media screen and (max-width: 800px) {
.top_about2{
	background: url("../img/base/ie_sp.png")no-repeat top center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	padding: 200px 0px 0px;
	margin: 100px auto 0px;
}
.top_about2 h2{
	width: 90%;
	margin: 0 auto 30px;
}
.e_box_txt h2{
	font-size: 20px;
	margin: 0 auto 5px;
}
.e_box_txt p{font-size: 14px;}
.circle_number {
	width: 35px;
	height: 35px; 
	line-height: 35px; /* heightと同じ値にする */
}

}

@media screen and (max-width: 600px) {
.top_about2{
	padding: 170px 0px 0px;
	margin: 50px auto 0px;
}
.top_about2 h2{width: 95%;}
.e_box{
	width: 95%;
	margin: 0 auto 20px;
	padding: 20px 20px 30px;
	box-sizing: border-box;
}
}

@media screen and (max-width: 400px) {
.top_about2{
	padding: 120px 0px 0px;
	margin: 30px auto 0px;
}
.e_box_txt h2{
	font-size: 18px;
	margin: 0 auto 0px;
}
.e_box_txt p{font-size: 12px;}
}


/*TOP(こんな症状)--------------------------*/
.symptomatology{
	width:90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto 100px;
}
.sym_txt{width: 60%;}
.sym_img{width: 35%;text-align: center;}
.sym_img img{max-width:350px; width: 100%;}

.sym_txt h2{
	width: 90%;
	max-width: 650px;
	margin-bottom: 50px;
}
.sym_txt p{
	font-size: 18px;
	line-height: 180%;
}
.sign{
	width:90%;
	max-width: 1300px;
	margin: 0 auto;
}
.sign_pc{}
.sign_sp{display: none}
.sym_btn{
	text-align: center;
	margin: 50px auto 0px;
}
.sym_title{
	font-size: 35px;
	text-align: center;
	margin: 50px auto 0px;
}

@media screen and (max-width: 1000px) {
	.symptomatology{margin: 0 auto 70px;}
	.sym_txt{width: 70%;}
	.sym_img{width: 25%;}
	.sym_txt h2{margin-bottom: 30px;}
	.sym_txt p{	font-size: 16px;}
}

@media screen and (max-width: 800px) {
	.symptomatology{
		margin: 0 auto 50px;
		flex-wrap: wrap;
		justify-content: center;
		}
	.sym_txt{width: 100%;margin-bottom: 30px;}
	.sym_txt h2{width: 100%;}
	.sym_img{width: 60%;}
	.sym_txt p{	font-size: 14px;}
	.sym_title{
		font-size: 25px;
		margin: 50px auto 0px;
	}
}

@media screen and (max-width: 600px) {
	.sign_pc{display: none}
	.sign_sp{display: block;}
	.sym_title{
		font-size: 20px;
		margin: 50px auto 0px;
	}
}

/*TOP(施工実績)--------------------------*/
.top_works{
	max-width: 1400px;
	width: 90%;
	padding: 150px 0px;
	margin: 0 auto;
}
ul.top_works_img{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	
}
ul.top_works_img li{
	width: 32%;
	background: #d5eaf1;
	text-align: center;
}
ul.top_works_img li h2{
	padding: 10px;
}
ul.top_works_img li h3{
	font-size: 20px;
	color: #1d2088;
	padding: 0px 10px 15px;
}
ul.top_works_img li p{
	font-size: 18px;
	padding: 0px 10px 20px;
}

.cam_banner{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
.top_works{
	padding: 100px 0px;
}
ul.top_works_img{
	flex-wrap: wrap;
	justify-content: center;
	}
ul.top_works_img li{
	width: 48%;
	margin: 0% 1% 5%;
	}
	ul.top_works_img li h2{font-size: 20px;}
	ul.top_works_img li h3{font-size: 18px;}
	ul.top_works_img li p{font-size: 16px;}
}
@media screen and (max-width: 600px) {
	ul.top_works_img li h2{font-size: 18px;}
	ul.top_works_img li h2{font-size: 16px;}
	ul.top_works_img li p{font-size: 14px;}
}


/*TOPのお問い合わせ----------------------------------------------------*/
.top_contact{
	width:100%;
	padding:100px 0px;
	background:url("../img/base/bg4.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{
	text-align: center;
	width: 45%;
	margin-bottom: 30px;
}
.btn_w{/* 白枠付きbtn */
	background: #FFFFFF;
	border-radius: 20px;
	margin-bottom: 20px;
	padding: 20px 0px 15px;
}
ul.contact_btn li i{
	font-size: 50px;
	color: #000;
}
ul.contact_btn li a{
	text-decoration: none;
	color: #000;
	padding: 0px;
}
.contact_txt{font-size: 16px;}
.contact_tel{
	font-size: 40px;
	line-height: 120%;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: bold;
}
.contact_line{text-align: center;}

@media screen and (max-width: 1000px) {
	.top_contact{
		padding: 70px 0px 70px;
		background:url("../img/base/bg4_sp.jpg") no-repeat center center;
		background-size: auto 100%;  /* 高さに合わせて調整*/
	}
	ul.contact_btn{flex-wrap: wrap;}
	ul.contact_btn li{width: 85%;}
	ul.contact_btn li i{font-size: 40px;}
}
@media screen and (max-width: 500px) {
	ul.contact_btn li{width: 95%;margin-bottom: 20px;}
	ul.contact_btn li i{font-size: 35px;}
	.contact_txt{font-size: 14px;}
	.contact_tel{font-size: 23px;}	
}



/* MAP -------------------------------------------*/
.map_txt{
	font-size: 16px;
	text-align: center;
	margin: 0 auto 20px;
}
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin:0px auto;
	width: 95%;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 600px) {
.map_txt{
	font-size: 12px;
	margin: 0 auto 10px;
}
}



/* 施工の流れ ------------------------------*/

.flow_mae{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 200px;
}
.mae_img{
	width: 80%;
	margin: 0 auto;
}
.mae_txt{width: 100%;}

.mae_txt p{
	font-size: 18px;
	line-height: 200%;
	padding: 100px 0px 50px;
	text-align: center;
}

@media screen and (max-width: 1100px) {
.flow_mae{
	flex-wrap: wrap;
	margin: 0 auto 100px;
}
.mae_img{width: 60%;}
.mae_txt{width: 100%;}
}

@media screen and (max-width: 600px) {
.flow_mae{
	flex-wrap: wrap;
	margin: 0 auto 50px;
}
.mae_txt h2{
	font-size: 22px;
	margin-bottom: 20px;
}
.mae_txt p{
	font-size: 13px;
	line-height: 180%;
	margin-bottom: 20px;
	padding: 0px 0px 0px;
}
.mae_img{width: 90%;}
}


.flow_box{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}



.flow_txt{/* 流れの説明文 ------------------------------*/
	font-size: 16px!important;
	font-weight: normal!important;
	line-height: 180%;
	margin: 0 auto 0px;
}
.flow_img{
	max-width: 400px;
	margin: 30px auto 0px;
}

.flow_design03 {
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 700px) {
.flow_txt{
	font-size: 13px!important;
}
.flow_img{
	max-width: 400px;
	margin: 15px auto 0px;
}

}


.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 50px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #1d2088;
  display: inline-block;
  margin-right: 0.5em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #1d2088;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 600;
	color: #000;
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 600px) {
.flow03 > li dl {
  padding-left: 45px;
  position: relative;
}
.flow03 > li dl::after {
  width: 30px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}	
.flow03 > li dl dt {
  font-size: 1.0em;
	line-height: 150%;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
}


/* 会社概要 ------------------------------*/
.conmpany_img{
	margin: 50px auto 0px;
	text-align: center;
	max-width: 500px;
	width: 80%;
}
.aisatu{
	margin: 50px auto 0px;
	font-size: 17px;
	line-height: 200%;;
}
.com_smoo{margin: 0 auto 150px;}

@media screen and (max-width: 600px) {
.aisatu{
	margin: 20px auto 0px;
	font-size: 12px;
	line-height: 180%;;
}
.com_smoo{margin: 0 auto 100px;}
}

/* 求人 ------------------------------*/
.recruit_txt{
	margin: 30px auto 0px;
	font-size: 18px;
	line-height: 170%;
}
.recruit_img1{
	margin: 100px auto 100px;
	text-align: center;
}
@media screen and (max-width: 600px) {
.recruit_txt{
	margin: 20px auto 0px;
	font-size: 13px;
}
.recruit_img1{
	margin: 50px auto 50px;
}
}


/* 施工事例 -------------------------------------------*/
.works_all{padding: 50px 0px 50px;}
.works_all h3{
	font-size: 30px;
	text-align: center;
	color: #1d2088;
	padding-bottom: 10px;
}
.box_sen{border-bottom:2px dashed #aed4e5;}

ul.works{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}
.works_img{width: 43%;}
ul.works li img{
	aspect-ratio: 3 / 2; /* 画像サイズの比率 */
	object-fit: cover; /* トリミング */
	width: 100%;
	height: 100%;
}
.img_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.label {
  position: absolute;
  bottom: 0px; /* 画像の下からの位置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  font-family: "Rubik", serif;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  /* 白枠線（アウトライン） */
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}
.before{color: #1d2088;}
.after{color: #C20B0B;}

.works_price{
	margin: 30px auto 0px;
	text-align: center;
	max-width: 400px;
	width: 70%;
}

/* 右へボタン */
.ya i{
	font-size: 50px;
	color:  #1d2088;
	padding: 130px 20px 0px;
}
.i_pc{}
.i_sp{display: none;}

@media screen and (max-width: 800px) {
ul.works{flex-wrap: wrap;}
.works_img{width: 90%;}
.ya i{padding: 0px 20px 0px;}
.i_pc{display: none;}
.i_sp{display: block;padding: 30px 0px;}
}

@media screen and (max-width: 500px) {
.works_all{padding: 30px 0px 30px;}
ul.works{font-size: 12px;
	margin: 0 auto 0px;
}
.ya i{font-size: 30px;}
.i_sp{display: block;padding: 10px 0px;}
.label {font-size: 20px;}
}



/* 事業内容 -------------------------------------------*/
.business1{
	max-width: 1300px;
	width: 100%;
	background: url("../img/base/ie.png")no-repeat bottom center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	padding: 0px 0px 150px;
	margin: 100px auto 0px;
}
.business1_txt{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 0px 20px;
	font-size: 18px;
}
.business1_img{
	margin: 0 auto;
	width: 60%;
	max-width: 1000px;
}

@media screen and (max-width: 1000px) {
.business1{
	background: url("../img/base/ie_sp.png")no-repeat bottom center;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	margin: 0px auto;
}
.business1_txt{font-size: 16px;}
.business1_img{width: 80%;}
}

@media screen and (max-width: 1000px) {
.business1{padding: 0px 0px 80px;}
.business1_txt{
	padding: 0px 0px 20px;
	font-size: 12px;
}
.business1_img{width: 90%;}
}


/* 事業内容（外壁塗装） -------------------------------------------*/
.business2{
	max-width: 1300px;
	width: 90%;
	margin: 100px auto 0px;
	padding: 0px;
	background: #d7ecf4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.business2_txt{
	width: 55%;
	padding: 0px 40px;
	box-sizing: border-box;	
}
.business2_txt h2{
	font-size: 30px;
	margin-bottom: 20px;
	color:  #1d2088;
}
.business2_txt p{
	font-size: 16px;
	line-height: 180%;
}
.business2_img{width: 45%;}

@media screen and (max-width: 1000px) {
.business2{
	flex-wrap: wrap;
	justify-content: center;
}
.business3{
	flex-wrap: wrap-reverse!important;
}
.business2_txt{
	width: 100%;
	padding: 20px;
	margin-bottom: 30px;
}
.business2_txt p{font-size: 14px;}
.business2_img{width: 100%;}
}

@media screen and (max-width: 600px) {
.business2{
	margin: 50px auto 0px;
}
.business2_txt{margin-bottom: 0px;}
.business2_txt h2{font-size: 22px;margin-bottom: 5px;}
.business2_txt p{font-size: 12px;}
}

/* 事業内容（その他工事） -------------------------------------------*/
.business4{
	max-width: 1300px;
	width: 90%;
	margin: 100px auto 0px;
	padding: 0px;
	background: #d7ecf4;
	box-sizing: border-box;
	padding: 30px;
}
.business4 h2{
	font-size: 30px;
	margin-bottom: 0px;
	color:  #1d2088;
}
.business4 p{
	font-size: 16px;
	line-height: 180%;
}

@media screen and (max-width: 600px) {
.business4{
	margin: 50px auto 0px;
}
.business4 h2{font-size: 20px;}
.business4 p{font-size: 12px;}
}

