@charset "UTF-8";

body {
	font-size: 16px;
	counter-reset: number 0;
}

#header {
    width: 100%;
    height: 70px;
    display: -webkit-flex;
    display: block;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    position: sticky;/*fixed*/
	top: 0;
	background-color: rgba(240, 240, 240, 0.8);
    opacity: 1;
	z-index: 5000;
	outline: solid #F0F0F0 1px;
	box-shadow: 0 2px 8px #888;

}
#logo {
	display: block;
	position: absolute;
	width: 200px;
	height: 30px;
	padding: 20px 0 0 20px;
}


img{
	width: 100%;
	height: auto;
	display: block;
}




/*   グローバルナビ　　*/

button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: 0;
  background: #000;/*transparent*/
  outline: 0;
  border-radius: 0;
  text-align: inherit;
	z-index: 9999;
}

button:hover {
  cursor: pointer;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 11px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 9999;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #fff;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  /* 基準線と同じ大きさと色 */
  position: absolute;
  transition: .5s;
}


.btn-line::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 上の線の位置 */
  transform: translateY(-16px);
}


.btn-line::after {
  content: "menu";
	color: #fff;
  /* 下の線の位置 */
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(8px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  transition: .5s;
}

.btn-line.open::before {
  content: "";
  transform: translateY(0);
}

.btn-line.open::after {
  content: "close";
	transform: translateY(-18px);
	
		
}
/* ここまでボタンアニメーション */

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/


.menu {
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
	bottom: 0;
  right: -100%;
  width: 70%;
  height: 91vh;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: rgba(255, 255, 255, 0.9);
  transition: .3s;
	z-index: 1000;
}

.menu-list,.menu-list a  {
  width: 100%;
  height: 100%;
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  justify-content: center;
  align-items: center;
	font-size: 1em;
	outline: solid #F0F0F0 1px;
	box-sizing: border-box;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.menu-list:hover {
  color: #333;
  background-color: rgba(220, 220, 220, 0.8);
  transition: .3s;
  cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  position: fixed;
  right: 0;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーここまで　header menu　*/





/*ここから各ページ共通エフェクトーーーーーーーーーーーーーーーーーーーーーーーー*/


/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(120px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}



/*ホバー時に画像拡大*/

figure {
	overflow: hidden;
}
figure img {
	transition: .3s;
	backface-visibility:hidden;
-webkit-backface-visibility: hidden;
}
a:hover figure img {
	transform: scale(1.05);
	backface-visibility:hidden;
-webkit-backface-visibility: hidden;
}

/*ここまでホバー時に画像拡大*/


/*ーーーーーーーーーーーーーーーーーここまでここから各ページ共通エフェクト*/



/*ここからヒーローヘッダースクロール　ーーーーーーーーーーーー*/

.scroll a {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.scroll a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 110px;
  background: #fff;
}
.scroll a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 110px;
  background: rgba(255, 255, 255, .4);
}
.scroll a::after {
  height: 30px;
  animation: sdl 2.0s ease infinite;
}
@keyframes sdl {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}

/*ーーーーーーーーーーーーーここまでヒーローヘッダースクロール*/




#container {
	width :100%;
	height: auto;
	margin-top: -70px;/*ヘッダーの高さ分を引く*/
	background-color: #fff;
}

#container__100 {
	width :100%;
	height: 100vh;
	margin-top: -70px;/*ヘッダーの高さ分を引く*/
	background-color: #fff;
}







/*ここからswiper------------------------*/
.swiper-container {
    width: 100%;
	height: 100vh;
}

.swiper-wrapper {
	position: relative;
	z-index: 1;
} 

.slider_section1 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	width: 100%;
    height: 100vh;  /*全画面表示*/
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	background-image: url("../img/main_pic02.jpg")
}

.slider_section2 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	width: 100%;
    height: 100vh;  /*全画面表示*/
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	background-image: url("../img/main_pic06.jpg")
}

.slider_section3 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	width: 100%;
    height: 100vh;  /*全画面表示*/
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	background-image: url("../img/main_pic07.jpg")
}

/*-------------------ここまでswiper*/



.txt {
	width: 100px;
	height: auto;
	position: absolute;
	top :100px;
	left :70px;
	z-index: 500;
}

.txt__bg {
	width: 60%;
	height: 45px;
	border-style: solid;
	border-width: 1px;
	border-color: #22419F;
	background-color: #fff;
	padding: 1em;
	font-size: 2em;
	color: #000;
	opacity: 0.9;
}




.flex {
	width: 100%;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.box {
	position: relative;
	width: 47.5%;
	height: auto;
	margin: 0 auto 10px;
	background-color: #fff;
	padding: 0.5em;
	box-sizing: border-box;
}

.box a{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	  /*以下装飾*/
	margin:0;/*余計な隙間を除く*/
	font-size: 1.1em;/*文字サイズ*/
	border: solid 2px #1C2488 ; /*線で囲う*/
	padding: 0.8em 0;/*文字と線の間の余白*/
	color: #fff;/*文字色*/
	text-decoration: none;/*下線を表示させない*/
}

.box a:hover {
	background: rgba(255, 255, 255, 0.5);/*背景を半透明に*/
  }

.box img {
  	width: 100%;
  }




/*TOPページ　コンセプトエリアーーーーーーー*/

.concept-area {
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 7em 0;
}

.concept-area h3,
.category__item h3,
.aside__contact h3{
	text-align: center;
	font-size: 2em;
	margin: 0 0 2em 0;
	font-family:"Sawarabi Mincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.concept-area p {
	line-height: 2em;
	white-space: 0.1em;
	font-size: 1em;
	text-align: justify;
	font-family: "Sawarabi Mincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/*ーーーーーーーーーーーーーここまで*/




.aside__contact,
.newsarea,
.item,
.category__item {
	width: 100%;
	margin: 100px auto;
	padding-bottom: 7em;
}




/*ここからTOPページサブメニューエリアーーーーーーーーーーーーーーーー*/

.item__box {
	width: 100%;
	position: relative;
	padding-bottom: 1px;
}

.item__box__title {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index: 200;
	height: auto;
}

.item__box__title h3 {
	width: 100%;
	text-align: center;
	font-size: 2em;
	padding-bottom: 0.3em;
	border-bottom: solid 2px #fff;
	color: #fff;
}

.item__box__title p {
	text-align: center;
	font-size: 0.9em;
	padding-top: 0.5em;
	color: #fff;
	letter-spacing: 0.1em;
}

/*ーーーーーーーーーーーーーーーーここまでTOPページサブメニューエリア*/




/*ここからお知らせ欄エリアーーーーーーーーーーーー*/
.newsarea__box {
	width: 90%;
	margin: 0 auto;
	position: relative;
	padding: 2em 0;
}
.newsarea__title {
	font-size: 1.5em;
	padding-left: 1em;
}

.newsarea__all {
	position: absolute;
	right: 2em;
	top: 0;
}

.newsarea__box dt{
	color: #000;
	font-size: 0.9em;
	padding: 1.5em 0 1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.newsarea__box dd{
	padding: 0 0 1.5em;
	border-bottom: 1px solid #000;
	line-height: 2em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.newsarea__box__under {
	padding: 0.1em 0.2em;
	position: relative;
	display: inline-block;
	transition: .3s;
	color: #06c;
}

.newsarea__box__under::after {
	position: absolute;
	bottom: .2em;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #06c;
	opacity: 0;
	transition: .3s;
}

.newsarea__box__under:hover::after {
	bottom: .2em;
	opacity: 1;
}
/*ーーーーーーーーーーーーーここまで*/





/*お知らせすべて見るボタンーーーーーーーーーーーー*/
.view-all__btn{
    display:inline-block;
    background:#fff;
    width: 100px;
    padding:8px 10px 5px 0px;
    text-align:center;
    color:#000;
    margin:0px;
    border:1px solid;
    cursor:pointer;
    position: relative;
    text-decoration: none;
}

.view-all__btn::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    width: 10px;
    height: 5px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 1px solid #000;
    transform: skew(45deg);
    transition: .3s;
}
.view-all__btn:hover {
	color: #F00;
}
.view-all__btn:hover::after{
    right: -10px;
    width: 20px;
}

.archive__newsarea {
	width: 100%;
	margin: 150px auto;
	padding-bottom: 7em;
}
/*ーーーーーーーーーーーーーここまで*/




/*ここからTOPページ　SERVICEエリア（テスト）ーーーーーーーーーーーーーーー*/

.category__item2 {
	width: 100%;
	padding: 7em 0;
}

.category__item2 h3 {
	text-align: center;
	font-size: 2em;
	margin: 0 0 2em 0;
	font-family:"Sawarabi Mincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
	
}

.flex2 {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
	align-items: stretch;
	justify-content: space-between;
}

.box2 {
	width: 45%;
	-webkit-box-shadow: 0 0 8px #888;
	box-shadow: 0 0 8px #888;
	margin: 0 2% 2em;
	padding: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	outline: 1px solid #fff;
}


.icon {
	margin: 0 auto;
}

.icon h4 {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: center;
	padding: 1em;
	display: block;
	font-size: 1em;
	font-weight: 100;
	color: #3B8C11;
	margin: 0 auto;
}

.icon p {
	display: none;
	
}

.icon__btn {
	width: 50%;
	display: inherit;
    background:#fff;
    padding: 1em;
    text-align:center;
    color:#000;
    margin: 0 auto 4em;
    cursor:pointer;
    text-decoration: none;
	outline: solid 1px #000;
}

.icon__btn::after{
    content: "→";
    display: inline-block;
	text-align:center;
	padding: 0 0 0 0.5em;
	vertical-align: middle;
}

.icon__btn:hover {
	color: #f06;
	background: #fff;
	outline: solid 1px #f06;
	transition: .3s;
}



/*ーーーーーーーーーーーーーーーーここまでTOPページ　SERVICEエリア（テスト）*/





/*TOPページお問合せエリアーーーーーーーーーーーーーー*/
.aside__contact p {
	width: 80%;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	margin: 0 auto;
	text-align: justify;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.aside__contact__wrap {
	display: flex;
	flex-direction: column;
	width: 80%;
	margin: 0 auto;
	padding: 2em 0;
}

.tel,
.tel__area {
	width: 280px;
	text-align:justify;
	margin: 0 auto;
}

.tel__box {
	width: 280px;
	font-size: 1.5em;
	text-align:center;
	padding: 0.5em 0;
}

.contact_induction {
	width: 250px;
	margin: 0 auto;
	padding: 2em 0;
}


.contact_induction__btn {
    display:block;
    background:#000;
    padding:1em 3em;
    text-align:center;
    color:#fff;
    margin: 0 auto;
    cursor:pointer;
    text-decoration: none;
}

.contact_induction__btn::after{
    content: "→";
    display: inline-block;
	text-align:center;
	padding-left: 0.5em;
	vertical-align: middle;
}

.contact_induction__btn:hover {
	color: #fff;
	background: #555;
	transition: .3s;
}

/*ーーーーーーーーーーーーーーーーーーーここまでTOPページお問合せエリア*/






.wrapper {
	width: 100%;
	margin-top: 125px;
}

.spacer {
	width: 100%;
	height: 50px;
}





/*ここからfooterーーーーーーーーーーーーーー*/

#footer {
	position: relative;
	width: 100%;
	background-color: #4B4450;
	margin-top: 7em;
		
}

.sns {
	width: 30px;
	height: auto;
	margin: 0 auto;
	padding-top: 3em;
}
.mark {
	width: 70px;
	height: auto;
	margin: 0 auto;
	padding: 5em 0 1em;
}

.logotype {
	width: 120px;
	height: auto;
	margin: 0 auto;
	padding-bottom: 100px;
}



.gotop{
	position: fixed;
    bottom: 50px;
    right: 16px;
    display: block;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.8em;
    text-decoration: none;
    color: #333;
    opacity: 1;
	border-radius: 50% 50%;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 30%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 0.9;
	transition: all .3s;
	background: #99C9A4 ;
	border: 1px solid #fff;
	color: #333;
}




.copyright {
	font-size: 0.7em;
	color: #FFF;
	font-style: normal;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	text-align: center;
}

/*ーーーーーーーーーーーーーーここまでfooter*/








/*ここから下層ページ　タイトルバー　ーーーーーーーーーーーーーーーーーーー*/

.page-title-bar {
	position: relative;
	top: 70px;
	width: 100%;
	height: 150px;
	background-image: url("./img/page-title-bar.jpg");
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center center;
}

.page-title-bar__point {
	width: 60px;
	height: auto;
	position: absolute;
	top :40px;
	left :2em;
}

.page-title-bar__txt {
	color: #000;
	width: 100%;
	height: auto;
	position: absolute;
	top :50%;
	left : 50%;
	transform: translate(-50%,-50%);
	z-index: 501;
	font-size: 1em;
	text-align: center;
	letter-spacing: 0.2em;
	font-family: "Sawarabi Mincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 100;
	text-shadow: 2px 2px 3px #fff;
}

.page-title-bar__txt span {
	font-size: 0.6em;
}


/*ーーーーーーーーーーーーーーーここまでここから下層ページ　タイトルバー*/


/*ここからSERVICE/業務案内ページ　ーーーーーーーーーーーーーーーーーーーーーー*/

#place2,
#place3,
#place4,
#place5,
#place6 {
	margin: 0;
}

.wrap {
	width: 100%;
	margin: 0;
}

.category__box {
	width: 95%;
	margin: 0 auto 150px;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.category__box__title {
	text-align: center;
	font-size: 1.5em;
	padding: 1em;
	color: #000;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 100;
}
.category__box__title::before {
	counter-increment: number 1;      /* number カウンタの増加数をセット */
	content: counter(number,decimal-leading-zero) "";      /* 表示形式を指定 */
	margin-right: 1em;
}

.category__box__txt {
	font-size: 1em;
	padding: 1em;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: justify;
}

.category__box__img {
	width: 100%;
	height: auto;
}

.wrap ul {
	list-style: disc;
	padding: 1em 2em;
}

.wrap ul li {
	font-size: 0.9em;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーここまでSERVICE/業務案内ページ*/



/*ここからWORKS/施工事例ページ　ーーーーーーーーーーーーーーーーーーーーーー*/


.works__wrap {
	width: 100;
}

#works__box1,
#works__box2,
#works__box3,
#works__box4 {
	width: 95%;
	height: 500px;
	position: relative;
	background-position: center center;
	background-size: cover;
	margin: 0 auto 7em;
}

#works__box1 {
	background-image: url("../img/top_about.jpg");
}
#works__box2 {
	background-image: url("../img/top_about.jpg");
}
#works__box3 {
	background-image: url("../img/top_about.jpg");
}
#works__box4 {
	background-image: url("../img/top_about.jpg");
}


#works__btn1,
#works__btn2,
#works__btn3,
#works__btn4 {
	position:absolute;
	bottom:30px;
	left:50%;
	transform:translate(-50%,0%);
	z-index: 200;
}


.works__box__name {
	text-align: center;
	font-size: 1.1em;
	font-weight: 100;
	padding: 1em;
	color: #fff;
}


.works__btn__area {
	width: 95%;
	height: 60px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	padding: 0;
	margin-bottom: 5em;
}

.works__box__name2 {
	font-size: 1.1em;
	font-weight: 100;
	padding: 1.7em 1em 0 15%;
	color: #000;
	width: 35%;
	letter-spacing: 0.1em;
	vertical-align: middle;
}

.works__btn2 {
	display:inline-block;
    background:#fff;
    width: 100px;
    padding: 5px 10px 15px 0;
	margin-top: 1em;
    text-align:center;
    color:#000;
    outline: 1px solid;
    cursor:pointer;
    position: relative;
    text-decoration: none;
	font-size: 0.8em;
	vertical-align: middle;
}

.works__btn2 a {
	width: 100px;
	display: block;
	margin: 0 auto;
	padding: 1em;
	box-sizing: border-box;
}

.works__btn2::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 10px;
    height: 5px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 1px solid #000;
    transform: skew(45deg);
    transition: .3s;
}
.works__btn2:hover {
	color: #D3621B;
}
.works__btn2:hover::after{
    right: -10px;
    width: 20px;
}




.works__box {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin-bottom: 150px;
}

.case__box {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.works__box__title {
	text-align: center;
	font-size: 1.2em;
	padding: 1em;
	color: #000;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 100;
}
.works__box__title::before {
	counter-increment: number 1;      /* number カウンタの増加数をセット */
	content: counter(number,decimal-leading-zero) "";      /* 表示形式を指定 */
	margin-right: 1em;
}

.works__box__txt {
	font-size: 1em;
	padding: 1em;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: justify;
}

.works__box__img {
	width: 95%;
	margin: 0 auto;
}


.wrapper__case {
	width: 100%;
	margin-top: 80px;
}

.case__box__title {
	text-align: center;
	font-size: 1.2em;
	padding: 1em;
	color: #000;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 100;
}


.case__box__txt {
	font-size: 1em;
	padding: 1em;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: justify;
}

.case__box__img {
	width: 95%;
	margin: 0 auto;
}



.works__wrap ul {
	list-style: disc;
	padding: 1em 2em;
}

.works__wrap ul li {
	font-size: 0.9em;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}


.back-btn__area {
	width: 200px;
	margin: 0 auto;
}

.back-btn {
	width: 200px;
	margin: 0 auto;
	display:inline-block;
    background:#fff;
	margin-top: 1em;
    text-align:center;
    color:#000;
    outline: 1px solid;
    cursor:pointer;
    position: relative;
    text-decoration: none;
	font-size: 0.8em;
	vertical-align: middle;
}

.back-btn a {
	width: 180px;
	display: block;
	margin: 0 auto;
	padding: 18px 0 15px 10px;
}

.back-btn::before{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    left: 10px;
    width: 10px;
    height: 5px;
    border: none;
    border-left: 2px solid #000;
    border-bottom: 1px solid #000;
    transform: skew(135deg);
    transition: .3s;
}
.back-btn:hover {
	color: #f00;
}
.back-btn:hover::before{
    left: -10px;
    width: 20px;
}


/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーここまWORKS/施工事例ページ*/





/*ここからABOUT US/事業所案内　ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.about {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.about__me {
	width: 100%;
}

.about__me h3 {
	width: 240px;
	padding: 0 0 1em 0;
}

.about__me h4 {
	font-size: 1.2em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 100;
	padding: 0 0 5em 3.7em;
	color: #333;
}

.about__me p {
	text-align: justify;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	padding-bottom: 1em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.wrap__info {
	width: 100%;
	margin: 0;
}

.info__box {
	width: 90%;
	margin: 0 auto;
	padding: 2em 0;
	margin-bottom: 7em;
	display: flex;
	flex-wrap: wrap;
	line-height: 2em;
}

.info__box dt{
	width: 25%;
	color: #003FA7;
	font-size: 0.9em;
	padding: 1.2em 0 1em 0.5em;
	border-bottom: 1px solid #fff;
}

.info__box dd{
	width: 70%;
	padding: 1em 0.5em 1em 0;
	border-bottom: 1px solid #fff;
	line-height: 2em;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}




/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーここまでABOUT US/事業所案内*/




/*ここから「「CONTACTページ」」お問合せフォーム　ーーーーーーーーーーーーーーーーーーー*/

.form-area {
	width: 100%;
	margin: 200px auto 0;
}

.list_form{
	width: 90%;
	height: auto;
	display: block;
	margin: 200px auto 0;
}


.list_form dt{
	width: 100%;
	height: 1.5em;
	padding-top: 1em;
	padding-bottom: 0.1em;
	font-weight: 100;
}


.list_form dd input{
	font-size: 0.95em;
	width: 96%;
	height: 1.5em;
	margin-bottom: 1em;
	padding: 0.8em 0em 0.8em 0.5em;
}

.list_form dd textarea{
	font-size: 1em;
	width: 96%;
	height:12em;
	padding: 0.5em;
}


button.clear{
	width: 120px;
	margin: 2em auto;
	padding: 0.6em;
	border-style: none;
	font-size: 0.8em;
	text-align: center;	
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: rgb(100,100,100);
}

button.clear:hover{
	opacity: 0.8;
}



.submitbtn{
	width: 100%;
	height: 2em;
	margin: 0 auto; 
	border-style: none;
	font-size: 1em;
	font-weight: 100;
	background-color: #31A93B;
	border-radius: 10px;
	color: #FFF;
}

.submitbtn:hover{
	opacity: 0.8;
	transition: 0.3s;
}


input,textarea,button:focus{
	outline:none;
}



.privacy{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-right: 0.5em;
	padding-bottom: 0.8em;
	padding-left: 0.5em;
	font-weight: 100;
	line-height: 1.5em;
	font-size: 0.9em;
}

.privacy p {
	text-align: justify;
}
.form-area__agree {
	padding: 2em;
	text-align: center;
}

.form-area__agree input {
	vertical-align: -0.05em;
	transform: scale(1.5);
		
}


.list_form dt span{
	font-size: 0.8em;
	color: #C03;
	font-weight: 100;
}


.aside__contact__tel {
	width: 100%;
	margin: 100px auto;
	padding-bottom: 5em;
}

.aside__contact__tel P {
	text-align: center;
	padding-bottom: 2em;
}


/*-----------------ここまで「「CONTACTページ」」お問合せフォーム*/



/*ここからNEWS/お知らせ　単独ページ　ーーーーーーーーーーーーーーーーーーー*/

.news__head {
	width: 95%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}
.date {
	width: 125px;
	background-color: #fff;
	outline: #000 2px solid;
	box-sizing: border-box;
	color: #000;
	padding: 1em;
	letter-spacing: 0.25em;
	font-size: 0.8em;
}
.news__head__title {
	padding: 1em 0;
	font-size: 1.5em;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}
.news__head__txt {
	padding: 1em;
	letter-spacing: 0.2em;
	line-height: 1.8em;
	margin: 0 auto;
}
.news__head__img {
	width: 95%;
	margin: 0 auto;
}

/*ーーーーーーーーーーーーーーーーここまでここからNEWS/お知らせ　単独ページ*/







/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
	@media screen and (min-width:600px) {
		#header {
			width: 100%;
			height: 50px;
			position: sticky;
			top: 0;
			background-color: rgba(240, 240, 240, 0.8);
		}
		
		#logo {
			padding: 10px 0 0 1.5%;
		}
		.btn {
			display: none;
		}

		.menu {
			position: fixed;
			top: 0;
			right: 0%;
			width: 70%;
			height: 50px;
			/* メニューを横に */
			display: flex;
			flex-direction: row;
		}
		.menu-list {
			height: 100%;
		}
		
		.swiper-container {
			width: 100%;
			height: 100vh;
			margin: 0;
			padding: 0;
			line-height: 0;
		}	

		
		h2 {
			left :7%;
		}
		
		.flex {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			width: 100%;
			margin: 300px 0 0;
		}

		.box {
			width: 45%;
			height: 200px;
			margin: 0 auto 10px;
			background-color: gray;
		}
		
		#container {
			margin-top: -50px;/*ヘッダーの高さ分を引く*/
		}
		
		.concept-area {
			width: 70%;
		}
		
		.item {
			width: 100%;
			max-width: 1200px;
			margin: 100px auto;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			padding-bottom: 10em;
		}

		.category {
			padding-bottom: 10em;
		}
		
		.item__box {
			width: 100%;
			outline: solid 5px #999;
			box-sizing: border-box;
			padding-bottom: 0
		}

		
		.newsarea {
			width: 90%;
			max-width: 800px;
			margin: 100px auto;
		}

		.newsarea__title {
			font-size: 1.5em;
			padding-left: 1em;
		}

		.newsarea__box {
			width: 90%;
			height: auto;
			margin: 0 auto;
			padding-bottom: 50px;
			display: flex;
			flex-wrap: wrap;
		}

		.newsarea__box dt{
			padding: 1.8em 0 1.3em 1.5em;
			width: 20%;
			box-sizing: border-box;
			border-bottom: 1px solid #333;
		}

		.newsarea__box dd{
			padding: 1.1em 1.5em 1.3em 0;
			width: 80%;
			box-sizing: border-box;
			border-bottom: 1px solid #333;
		}
		
		.archive__newsarea {
			width: 70%;
			margin-top: 150px;
		}

		.icon p {
			font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
			text-align: justify;
			padding: 0.8em;
			display: inherit;
			font-size: 1em;
			line-height: 1.5em;
		}

		
		.box {
			width: 33%;
			height: auto;
			margin: 0 auto 10px;
			background-color: #fff;
		}

		.sns {
			position: absolute;
			top: 15;
			left: 5%;
		}
		
		.logotype {
			padding-bottom: 20px;
		}
		
		.gotop{
			right: 5%;
		}
		
		.page-title-bar__point {
			left: 10%;
			width: 80px;
		}
		
		.page-title-bar {
			top: 50px;
		}
		
		.page-title-bar__txt {
			font-size: 1.8em;
		}

		.page-title-bar__txt span {
			font-size: 0.7em;
		}

		
		.spacer {
			height: 0px;
		}
		
		.category__box {
			flex-direction: row;
			position: relative;
			width: 90%;
			padding: 0 0 200px;
		}

		.wrap {
			width: 45%;
			order: 2;
			padding: 0 1em 1em;
		}
		.category__box__title {
			font-size: 1.8em;
			padding: 0 0 2em 0;
		}
		
		.category__box__txt {
			line-height: 2em;
		}

		.category__box__img {
			width: 55%;
			order: 1;
			margin-left: 5%;
		}

		/*ここからTOPページ　SERVICEエリアーーーーーーーーーー*/
		
		.category__item2 {
			width: 100%;
			padding: 7em 0;
		}


		.flex2 {
			width: 90%;
			margin: 0 auto;
			display: flex;
			flex-wrap: wrap;
			align-content: space-around;
			align-items: stretch;
		}

		.box2 {
			width: 45%;
			-webkit-box-shadow: 0 0 8px #888;
			box-shadow: 0 0 8px #888;
			margin: 0 2.5% 2em;
			padding: 0;
			box-sizing: border-box;
			display: flex;
			flex-flow: column;
		}
		
		.icon__btn {
			margin-top: auto;
			justify-content: center;
		}

		.icon h4 {
			padding: 1.2em;
		}

		.icon p {
			padding: 1em;
		}

		
		/*ーーーーーーーーーーここまでTOPページ　SERVICEエリア*/
		
		
		.aside__contact p {
			text-align: center;
		}
		
		.about {
			width: 90%;
			margin: 0 auto;
			display: flex;
			flex-direction:row ;
			padding: 0 0 3em;
		}

		.about__me {
			width: 60%;
			order: 2;
			margin-left: 5%;
		}
		
		.abut__me__img {
			width: 30%;
			order: 1;
		}
		
		.wrap__info {
			width: 100%;
			max-width: 800px;
			margin: 0 auto;
		}

		.info__box dt{
			width: 20%;
			color: #003FA7;
			font-size: 1em;
			padding: 1.2em 0 1em 2em;

		}

		.info__box dd{
			width: 70%;
			padding: 1em 2em 1em 0;
			font-size: 1em;
			letter-spacing: 0.1em;
		}

		
		.news__head {
			width: 70%;
		}
		.date {
			width: 125px;
		}
		.news__head__title {
			padding: 1em 0;
			font-size: 1.5em;
			letter-spacing: 0.1em;
			line-height: 1.8em;
		}
		.news__head__txt {
			width: 70%;
		}
		.news__head__img {
			width: 70%;
			margin: 0 auto;
		}
		
		
		/*ここからWORKSページーーーーーーーーーーーーー*/
		
		.works__wrap {
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			margin: 0 auto;
		}
		
		#works__box1,
		#works__box2,
		#works__box3,
		#works__box4 {
			width: 45%;
			height: 500px;
			align-content: space-between;
		}
		
		.works__box {
			flex-direction: row;
			width: 90%;
			padding: 0 0 200px;
		}

		.works__box__title {
			font-size: 1.8em;
			background-color: #fff;
			color: #000;
			padding: 0 0 2em 0;
			writing-mode: vertical-rl;
			text-orientation: upright;
			align-items: stretch;
		}
		
		.works__box__txt {
			line-height: 2em;
		}

		.works__box__img {
			width: 45%;
			align-content: space-between;
		}
		
		.works__box__name2 {
			padding-left: 20%;
		}
		
		.case__box {
			width: 90%;
			max-width: 800px;
			margin: 0 auto;
		}

		
		/*ーーーーーーーーーーーここまでWORKSページ*/



		
		/* ここからお問合せform---------------- */
		
		
		.form-area {
			width: 90%;
			max-width: 1024px;
		}
		
		.list_form{
			width: 100%;
			height: auto;
			margin: 0 auto;
		}
		
	
		.list_form dt label span {
			float: left;
			width: 60%;
			height: 2.5em;
			background-color: #AAF8C3;
		}



		.list_form dd input {
			font-size: 1em;
			width: 70%;
			height: 1.5em;
			margin-top: -2.8em;
			margin-left: 25%;
			padding-bottom: 0.8em;
			padding-right: 1em;
			display: inline-block;
			border-radius: 10px;
			border: solid 1px #ccc;
		}


		.list_form dd textarea {
			font-size: 1em;
			max-width: 70%;
			height:15em;
			margin-top: -2em;
			margin-left: 25%;
			padding-right: 1em;
			display: inline-block;
			border-radius: 10px;
			border: solid 1px #ccc;
			
		}



		.submitbtn {
			width: 100%;
			height: 2em;
			margin: 0 auto;
			border-style: none;
			font-size: 1em;
			font-weight: 300;
			background-color: #31A93B;
			border-radius: 10px;
			color: #FFF;
		}
		
		button.clear{
			position: relative;
			right: 75%;
			left: 25%;
		}


		.submitbtn:hover {
			cursor: pointer;
		}


		input,textarea,button:focus{
			outline:none;
		}
		
		.form-area__agree input {
			vertical-align: -0.01em;
		}
		
		/*-----------------------ここまでお問合せフォーム*/


		
		
/* 1025px以上はハンバーガーボタン非表示、ヘッダー固定 */
	@media screen and (min-width: 1025px) {

		#logo {
			padding-left: 5%;
		}
		
		.page-title-bar__point {
			left: 8%;
			width: 80px;
		}

		.flex {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-around;
			width: 100%;
			max-width: 1200px;
			margin: 100px auto 0;
		}

		.box {
			width: 33%;
			margin: 0 auto;
			background-color: #fff;
		}

		.concept-area {
			width: 800px;
		}
		
		.newsarea {
			width: 800px;
			margin: 100px auto;
		}
		.newsarea__box {
			width: 800px;
			margin: 0 auto;
		}

		.archive__newsarea {
			width: 800px;
		}
		
		.works__box,
		.category__box {
			width: 90%;
			max-width: 1200px;
			margin: 0px auto　150px;
		}

		
		
		/*ここからTOPページ　SERVICEエリアーーーーーーーーーー*/
		
		.category__item2 {
			width: 100%;
			max-width: 1200px;
			padding: 7em 0;
			margin: 0 auto;
		}

		.flex2 {
			width: 100%;
			max-width: 1200px;
			margin: 0 auto;
			display: inline-flex;
			flex-wrap: wrap;
			align-content: space-around;
		}

		.box2 {
			width: 28%;
			box-shadow: 0 0 8px #888;
			margin: 0 2.65% 4em;
			padding: 0 1em;
			box-sizing: border-box;
		}

		


		
		/*ーーーーーーーーーーここまでTOPページ　SERVICEエリア*/

		
		
		.aside__contact__wrap {
			width: 60%;
			max-width: 720px;
			display: flex;
			flex-direction: row;
			margin: 0 auto;
		}
		


		.aside__contact p {
			width: 80%;
			line-height: 1.8em;
			letter-spacing: 0.2em;
			margin: 0 auto;
			text-align: justify;
			text-align: center;
		}
		
		.tel {
			width: 45%;
			align-items: center;
		}

		.tel__area {
			width: 60%;
			max-width: 600px;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			padding: 1em 0 0 0;
		}
		
		.contact_induction {
			width: 45%;
			align-items: center;
		}
		
		.contact_induction__btn {
			display:block;
			background:#000;
			padding:1.5em 0em;
			text-align:center;
			color:#fff;
			margin: 0 auto;
			order:1px solid;
			cursor:pointer;
			text-decoration: none;
			margin-top: -1em;
		}


		.aside__contact__tel P {
			text-align: center;
			padding-bottom: 0em;
		}

		
		
		.about {
			width: 90%;
			max-width: 1200px;
		}

		
		.works__wrap {
			width: 100%;
			max-width: 1200px;
			margin: 0 auto;
		}
		

		
		
		
		
		.news__head {
			width: 800px;
		}
		.news__head__txt {
			width: 800px;
		}
		.news__head__img {
			width: 800px;
			margin: 0 auto;
		}

		
		
		
		
		
		
		
}

}


