@charset "utf-8";
*{
	box-sizing:border-box;
}
html {
	scroll-behavior: smooth;
}

body{
  margin:0;
  font-family: 'Noto Sans JP', sans-serif;

}
@media(min-width:901px){
	.sponly{
	  display:none !important;
	}
}
@media(max-width:900px){
	.pconly{
		display:none !important;
	}
	body{
		font-size:90%;
	}
}
@media(min-width:561px){
	.show_sp{display: none !important;}
}
@media(min-width:961px){
	.show_sptb{display: none !important;}
}
@media(max-width:560px){
	.show_tbpc{display: none !important;}
}
@media(max-width:960px){
	.show_pc{display: none !important;}
}
/*変数*/
:root{
	--basecolor: #edffe9 ; /*基本色*/
	--sabcolor: #f2ffec; /*サブカラー*/
}

img{
  max-width:100%;
  vertical-align:bottom;
}


p{
	margin:0
}

h3{
	margin:0;
}

a{

  text-decoration: none;

}

a:visited{

}

a:hover{
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}
.tac{
	text-align: center;
}
.tal{
	text-align: left;
}
.tar{
	text-align: right;
}
.mg0{
	margin: 0 auto;
}
.ib{
	display:inline-block;
}
.nowrap{
	white-space: nowrap;
}
.margin1{
	margin:10px
}
.margin2{
	margin:20px;
}
.margin3{
	margin:30px
}
.margin4{
	margin:40px
}
.margin5{
	margin:50px
}
.mgb1{
	margin-bottom:10px
}
.mgb2{
	margin-bottom:20px
}
.mgb3{
	margin-bottom:30px
}
.mgb4{
	margin-bottom:40px
}
.mgb5{
	margin-bottom:50px
}

body .mgt_1_anchor{
	padding-top:100px;
	margin-top:-50px;
}

body .mgt_2_anchor{
	padding-top:100px;
	margin-top:0px;
}

.mgt1{
	margin-top:10px
}
.mgt2{
  margin-top:20px
}
.mgt3{
	margin-top:30px
}
.mgt4{
	margin-top:40px
}
.mgt5{
	margin-top:50px
}
.mgl1{
	margin-left:10px
}
.mgl2{
	margin-left:20px
}
.mgl3{
	margin-left:30px
}
.mgl4{
	margin-left:40px
}
.mgl5{
	margin-left:50px
}
.mgr1{
	margin-right:10px
}
.mgr2{
  margin-right:20px
}
.mgr3{
	margin-right:30px
}
.mgr4{
	margin-right:40px
}
.mgr5{
	margin-right:50px
}
.n_mgt5{
	margin-top:5%
}

.padding1{
	padding:10px
}
.padding2{
	padding:20px
}
.padding3{
	padding:30px
}
.padding4{
	padding:40px
}
.padding5{
	padding:50px
}
.pdt1{
	padding-top:10px
}
.pdt2{
  padding-top:20px
}
.pdt3{
  padding-top:30px
}
.pdt4{
  padding-top:40px
}
.pdt5{
	padding-top:50px
}
.pdt6{
	padding-top:60px
}
.pdt7{
	padding-top:70px
}
.pdt8{
	padding-top:80px
}
.pdt9{
	padding-top:90px
}
.pdt10{
	padding-top:100px
}
.pdb1{
	padding-bottom:10px
}
.pdb2{
  padding-bottom:20px
}
.pdb3{
  padding-bottom:30px
}
.pdb4{
  padding-bottom:40px
}
.pdb5{
	padding-bottom:50px
}
.pdb6{
	padding-bottom:60px
}
.pdb7{
	padding-bottom:70px
}
.pdb8{
	padding-bottom:80px
}
.pdb9{
	padding-bottom:90px
}
.pdb10{
	padding-bottom:100px
}
.pdr5{
	padding-right:30% ;
}
.center800px,.center1000px{
	width:800px;
	max-width:96%;
	margin:0 auto;
}
.center1000px{
	width:1000px;
}


/*----------
特殊例
-----------*/
/*----------
マーカー下線
----------*/
.marker_line {
    background: linear-gradient(transparent 60%, var(--basecolor) 0%);
}
.marker_line_oreng{
	background: linear-gradient(transparent 50%, #ffd95d9f 50%);
}
/*---------
 題字下下線
 ----------*/
.hr-green {
    border-top: 2px solid #3ca27e;
    width: 80px;
}
/*--------------
矢印が右に移動する
----------------*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display:block;
    color: #333;
    text-decoration: none;
    outline: none;
}
/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:0;
    /*下線の形状*/    
    width: 60%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:40%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:10%;
}
.btnarrow4:hover::after{
    right:30%;
}

/*-------------
ボタン共通設定
--------------*/
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	color:#000000;
    padding: 10px 40px 10px 30px;
    text-align: right;
    outline: none;
	border: 1px solid #83e66d ;
	background-color: #83e66d;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
	background-color: #cbfcdb ;
	border: 1px solid #cbfcdb;
}
/*--------------
矢印が右に移動
--------------*/
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
}

/*------------
きらっと光る
------------*/
.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;

    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/*-------------
 文字animation
-------------*/
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	display: block;
	text-align: center;
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #11b319;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 3vw;
	font-weight: bold;
	line-height: 1.5;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}



/*------------*/

.flex{
	display: flex;
}
.flex_wrap_reverse,.flex_wrap{
	display: flex;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/
/*--------- top 幅規定とか--------*/

.contents_wrap{
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}

@media(max-width:900px){
	.contents_wrap{
		width: 94%;
	}
}

.contents_box_2{
	width: 100%;
	padding-right: 100px;
}

.contents_box_3{
	width: 100%;
}

/*--------- menu bar css --------*/
.top_menu_bar{
	position: fixed;
	display: flex;
	align-items: center;
	top: 0px;
	right: 0px;
	z-index: 100;
	width: 100%;
	background-color: #ffffffe0;
	/*	
	background-repeat:no-repeat ;
	background-position:right 60% top -15%;*/
}

.menu_back{
	position: relative;
	display: flex;
}
.logo_design{
	width: 20%;
	padding: 0% 0 0 2%;
	text-align: right;
}
.menu_back{
	width: 80%;
}
.menu_box {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: flex-end;
}
.menu_box a{
	width: calc(4.5em + 4.5vw);
	padding: 3% 0%;
	border-left:1px dotted #000;
	border-right:none;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	transition: .3s;
	color: #000;
}
.menu_box a:last-child{
	width: calc(9em + 4vw);
	border-left:1px dotted #000;
	background: #ee7700;
	color: #fff;
	padding: 3% 2%;
	margin: 0 0 0 0px;
}
/*.menu_box a::after{
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 2px;
	background-color: #ee7700;
	transition: .3s;
	transform: translateX(-50%);
}*/
.menu_box a:hover::after{
	width: 100%;
}
.menu_box a:hover{
	color: #ee7700;
	background:#f9f9f9;
}
.menu_box a:hover:last-child{
	background: #fff;
	color: #ee7700;
}
.menu_box a:hover:last-child::after{
	width: 0;
}


/*ヒーローイメージ*/
#slider {
	width: calc(100vw - calc(100vw - 100%));
	height: 75vh;
	position: relative;
}
.top_hero_img{
	position: relative;
	margin-top:calc( 6vw + 3px ) ;
}
.top_hero_copy{
	position: absolute;
	top: calc(75vh - 20vw);
	left: 4%;
	color: #fff;
	font-size: 4.5vw;
	font-weight: normal;
	margin: 0;
	font-family: source-han-serif-japanese, serif;
}
.top_hero_copy small{
	font-size:2.2vw;
	display:block;
	margin-top:0.4vw
}
@media(max-width:900px){
	#slider {
		height: 58vh;
		margin-top:60px;
	}
	.top_hero_copy{
		top: 20px;
		left: 20px;
		font-size: 7vw;
		width: auto;
	}
	.top_hero_copy small{
		font-size:4vw;
		display:block;
		margin-top:1.5vw
	}
	/*top*/
	.top_hero_img{
		margin-top: 0;
	}
	.top_hero_img img{
		height: 100vh;
		width: 100vw;
		object-fit: cover;
	}
	.top_hero_img p.logo_bottom{
		/* width:100vw; */
		height:	unset;
		position:
		absolute;
		top: -60px;
		left:0;
		padding:8px 10px 10px;
		background: #fff;
		text-align: left;
	}
	.top_hero_img p.logo_bottom img{
		width: 205px;
		height:
		unset;
	}
}

/*--ハンバーガーメニュー--*/

nav {
	display: block;
	position: fixed;
	top: 0;
	left: -300px;/*左からmenuを出したければleftに変更*/
	bottom: 0;
	width: 300px;/*menuの幅はここで規定*/
	background: #000;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .3s;
	z-index: 3;
	opacity: 0;
	}
  .open nav {
	left: 0;/*左からmenuを出したければleftに変更*/
	opacity: 1;
  }
  nav .inner {
	padding:60px 22px 22px;
  }
  nav .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
  }
  nav .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #e70a;/*menuに線で区切り*/
	}
  nav .inner ul li a {
	display: block;
	color: #fff;
	font-size: 14px;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
	}
  nav .inner ul li a:hover {
	background: #e4e4e4;
  }

.spmenu_logo{
	position:absolute;
	bottom:0;
	padding:20px;
}

  /*============
  .toggle_btn
  =============*/
  /*押すところのspanのcss*/
  .btn_back{
	  background-color: #ee7700;
	  padding: 3px;
	  position: fixed;
	  top: 12px;
	  right: 12px;
	  z-index: 3;
	  /* border-radius: 5px; */
	 }
  .toggle_btn {
	display: block;
	position: relative;
	width: 28px;
	height: 28px;
	transition: all .5s;
	cursor: pointer;
	}
  .toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 27px;
	height: 2px;
	background-color:#ffffff;
	border-radius: 4px;
	transition: all .5s;
	}
  .toggle_btn span:nth-child(1) {
	top: 5px;
	}
  .toggle_btn span:nth-child(2) {
	top: 13px;
	}
  .toggle_btn span:nth-child(3) {
	bottom: 5px;
	}
  .open .toggle_btn span {
	background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(-315deg);
	transform: translateY(8px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
	opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(315deg);
	transform: translateY(-8px) rotate(315deg);
  }

  @media screen and (max-width: 767px) {
	nav {
	  left: -220px;/*出したときの挙動に影響*/
	  width: 255px;/*menuの幅はここで規定*/
	}
  }
  
  /*============
  #mask
  =============*/
  #mask {
	display: none;
	transition: all .5s;
  }
  .open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #e70;
	opacity: .8;
	z-index: 2;
	cursor: pointer;
  }




/*----------- 横からでてくるやつ -------------*/
/*#sslink{
	cursor: pointer;
    position: fixed;
    z-index: 9999;

}
#sslink a:first-child{
	display: block;
	width: 150px;
	border-left:6px solid #ffc65d;
	background-color: #fffde6;
	padding: 20px ;
	margin-bottom: 50px;
}
#sslink a:nth-child(2){
	display: block;
	width: 150px;
	border-left:6px solid #ff5555;
	background-color: #ffeee7;
	padding: 20px ;
}
#sslink a{
	transition: all 0.2s;
}
#sslink a:hover{
	transform: translate(-50px, 0);
}*/
  
  
/*----------- contentsここから --------------*/

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

.midashi_ttl{
	letter-spacing: 2px;
	font-size: 230%;
	line-height: 1.4;
	margin: 0;
	display: block;
	width: fit-content;
	margin: 3vw auto 3vw;
}
.midashi_ttl_span{
	display: block;
	font-weight: normal;
	font-size: 13px;	
}
.white{
	color: #fff;
}
.tategaki{
	writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode:vertical-rl; 
}
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:
	bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:
	forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*下から上*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ee7700;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgDUextendTrigger{
    opacity: 0;
	white-space: nowrap;
}



   

/*----------------------------------------------------------
-------topic-------*/
.topic{
	background:#f0ebde;
	padding: 5% 0;
}
.topic_box .flex{
	margin-top: 30px;
	flex-wrap:wrap;
}
.topic_link{
	display: block;
	margin: 0 2% 3vw 0;
	width: 23.5%;
	min-height:300px;
	background: #fff;
	color: #000;
}
.topic_link:nth-child(4n){
	margin: 0 0 3vw 0;
}
.topic_link:last-child{
	/* margin: 0; */
}
.topic_time{
	display: inline-block;
	background:#a59979 ;
	color: #fff;
	padding: 1px 10px;
	font-size: 13px;
}
.category{
	display: inline-block;
	background:#ee7700 ;
	color: #fff;
	padding: 1px 10px;
	font-size: 13px;
}
.topic_link p{
	margin-top: 7px;
}
.topic_link div{
	padding: 3% 3% 6%;

}
.mask {
    display: block;
    line-height: 0;
    overflow: hidden;
	position: relative;
}
.works_link span{
	height:30vw
}

.topic_box .mask{
	height:15vw;
	max-height:200px;
}
@media(max-width:900px){
	.topic_box .mask{
		height: 30vw;
		max-height:200px;
	}
}


.mask img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition: all 0.3s;
}
.topic_link:hover img{
		transform: scale(1.2);

}
.topic_link_btn{
	text-align: center;
	margin-top: 50px;
}
.topic_link_btn a{
	display: inline-block;
	color: #000;
	border: 1px solid;
	padding: 1% 4%;
	letter-spacing: 2px;
}
.topic_link_btn .btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#000;
	transition: all 0.6s;
}

/*----------------------------------------------------------
-------works-------*/
.works{
	padding: 5% 0;
	position: relative;

}
.works::after{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/works_back.jpg) no-repeat;
    background-attachment: fixed;
}
.works_box{
	max-width: 1500px;
	width: 90%;
	margin: 0 auto;
}
.works_box .flex{
	flex-wrap: wrap;
	margin-top: 50px;
}
.works_link{
	display: block;
	margin: 4% 4% 0 0;
	width: 46%;
	color: #fff;
	position: relative;
}
.works_link:nth-child(2n){
	margin: 4% 0% 0 4%;
}
.works_link div{
	position: absolute;
	bottom: 0;
	background:#0000007b;
	width: fit-content;
	padding: 3% 8%;
}
@media(max-width:900px){
	.works_link div{
		position:
		relative;
		width:100%;
		padding:1px 15px;
		font-size: 90%;
	}	
}

.works_link p{
	margin: 10px 0;
}
.works_link:hover img{
	transform: scale(1.1);
}
.works_link_btn{
	text-align: center;
	margin-top: 50px;
}
.works_link_btn a{
	display: inline-block;
	color: #fff;
	border: 1px solid;
	padding: 3% 5%;
	letter-spacing: 2px;
}
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/

    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#fff;
	transition: all 0.6s;
}

.btn:hover span{
	color:#ee7700;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#fff;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

/*----------------------------------------------------------
-------business-------*/
.business{
	position: relative;
	height: 900px;
}
.business::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background:url(../img/business_back2.jpg) no-repeat;
	background-position:left ;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}
@media(max-width:900px){
	.business::after{
		background-attachment:unset;
	}
}


.business_ttl{
	position: absolute;
	top: 17%;
	right: 25%;

}
/*.business_ttl{
	position: absolute;
	top: 25%;
	left: 20%;

}*/
.business_link{
	padding: 5%
}
.business_link a img{
	width: 70%;

}
.business_copy{
	padding: 380px 0 0 0;
	margin: 0 0 0 auto;
	width: 40%;

}
.business_copy h3{
	font-size: 180%;
}
.business_copy p{
	margin: 20px 0;
	font-size: 120%;
	line-height: 2;
}
@media(max-width:500px){
	.business_copy p{
		font-size:105%	
	}
}
.business_copy img{
	width: 100%;
}
.business_copy img{
	width: 30%;
}
.business_ds_1{
	position: absolute;
	top: 70%;
	left: 25%;
	width: 25%;
}
.business_btn{
	/* margin-top: 50px; */
}
.business_btn .btn span{
	color: #000;
}
.business_btn a{
	display: inline-block;
	color: #000;
	border: 1px solid;
	padding: 3% 5%;
	letter-spacing: 2px;
}
.business_btn .bgleft:before{
	background: #ee7700;
}
/*-----------------------------------------------------------
■ b_icon*/
.b_icon_wrap{
	max-width: 1550px;
    width: 90%;
    margin: 0 auto;
}
.b_icon{
	margin: 7% 0 10%;
}
.b_icon ul{
	display: flex;
	flex-wrap:wrap;
	list-style: none;
	padding: 0;
	justify-content:center
}
.b_icon li{
	width:29%;
	text-align: center;

}
.b_icon li:nth-child(1),
.b_icon li:nth-child(2),
.b_icon li:nth-child(4){
	margin:0 3em 0 0;
	position: relative;
}
.b_icon li:nth-child(1)::after,
.b_icon li:nth-child(2)::after,
.b_icon li:nth-child(4)::after{
	position: absolute;
	top: 0;
	left: 100%;
	margin: 0 1.5rem;
	content: "";
	width: 1px;
	height: 100%;
	border-left: solid 1px #000;
	transform: rotate(10deg);
}
.b_icon li:nth-child(4),
.b_icon li:nth-child(5){
	margin:3em 3em 0 0
}
@media(max-width:900px){
	.b_icon li:nth-child(1)::after,
	.b_icon li:nth-child(2)::after,
	.b_icon li:nth-child(4)::after{
		display:none
	}
}


.b_icon_box{
	display: block;
	padding: 1% 8%;
}
.b_icon li h4{
	color: #000;
	font-size: 120%;
	position: relative;
	width: fit-content;
	margin: 1em auto 0;
}
.b_icon li h4 span{
	display: block;
	color: #ee7700;
	font-weight: normal;
	font-size: 80%;
	position: absolute;
	top: -1em;
	left: -1.5em;
}
.b_icon_ruby{
	color: #ee7700;
	font-size: 80%;
}
.b_icon li img{
	width:40%;
	margin: 20px 0 80px;
}
.b_icon_txt{
	text-align: left;
	position: relative;
	color: #000;
}
.b_icon_txt::after{
	content:"" ;
	position: absolute;
	top: -60px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 1px;
	height: 40px;
	border-left: 1px solid;
}
.b_icon_link{
    display:block;
	width: 60px;
    text-align:center;
    color:#ee7700;
    margin:30px 0 20px auto;
    cursor:pointer;
    position: relative;
    text-decoration: none;
}
.b_icon_link::after{
	content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 60px;
    height: 2px;
    background: #ee7700;
    transition: .3s;
}
.b_icon_link::before{
	content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-left: 2px solid #ee7700;
    border-bottom: 2px solid #ee7700;
    transform: rotate(-135deg);
    transition: .3s;
}
.b_icon_box:hover .b_icon_link::before{
    right: -0px;
}
.b_icon_box:hover .b_icon_link::after{
    right: -0px;
	width: 80px;

}
/*---------------------------------------------------------
■ companyとrecruit-----*/
.com_rec{
	margin-top:calc(60px + 6vw);
}

.com_rec_wrap{
	display: flex;
	position: relative;
}
.com_rec_ttl{

}
.company,.recruit{
	width: 60%;
	position: relative;
	display: block;
	margin: 0 0 0 auto;
}
.company_title{
	color: #fff;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	transition: all 0.3s;
}
/*
.company_title h2{
	font-size: calc(15px + 3vw);
	line-height: 1;
	margin: 0;
}
.company_title p{
	margin-top: 10px;
}*/
.company .mask::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.45; 
	background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);
	transition:all .3s ease-in-out;
}
.recruit .mask::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.45; 
	background-image: linear-gradient(225deg, forestgreen 7%, orange);
	transition:all .3s ease-in-out;
}*/

.company img,.recruit img{
	transform: scale(1);
	filter: grayscale(90%) brightness(70%);/*モノクロ具合を変更したい場合はこの数値を変更*/
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.company:hover img,.recruit:hover img{
	filter:grayscale(0);
	transform: scale(1.1)
}
.company:hover .mask::after,
.recruit:hover .mask::after{
	opacity: 0;
}
.company:hover .company_title,
.recruit:hover .company_title{

}
@media(max-width:600px){
	.com_rec .midashi_ttl{
		font-size:125%;
	}
}

/*------------- footer -------------*/
footer{
	margin: 0px 0 0;
	padding: 60px 0 2%;
	background: #000;
	color: #fff;
}
.footer_wrap{
	max-width: 1500px;
	width: 90%;
	margin: 0 auto;
}
.footer_logo_box{
	margin: 0 0 calc(30px + 3vw) 0;
}
.footer_logo{
	width: 50%;
}
.footer_logo p{
	margin: 20px 0;
	font-size: 80%;
}
.footer_logo span{
	display: block;
	font-weight: bold;
}
.contact{
	width: 50%;
}
.footer_contact{
	display:block;
	border: 1px solid #ee7700;
	padding:0 15px 2px;
	max-width:16em;
	margin: 10px 0 0 auto;
	color: #000;
	background: #ee7700;
	border-radius: 2px;
	align-items: center;
	text-align:right;
}
.footer_contact i{
	margin-left:0.5em;
}

.footer_contact img{
	width: 30px;
	margin-right: 10px;
}
.flex_address_menu{
	display: flex;
	align-items: flex-end;
}
.footer_menu{
	width: 60%;
	margin: 0px 0 0 auto;
	text-align: right;
}
.footer_menu a{
	color: #fff;
	margin: 0 0em 0 3em;
}

.address{
	width: 75%;
	display: flex;
	padding-bottom:1.5em;
}
.copyright{
	width:25%;
	text-align:right;
	padding-right: 1em;
}
.address .address_box{
	width:32%;
	margin:0 2% 0 0	
}
.address .address_box:nth-child(3){
	margin:0
}
.address .address_box .mapbox,
.address .address_box .mapbox img{
	width:auto;
	height: 9vw;
}
/*.address .address_box:nth-child(1){
	width: 49%;
	margin-right: 2%;
}
.address .address_box:nth-child(2){
	width: 49%;
	margin-left: 1%;
}
.address .address_box:nth-child(3){
		width: 49%;
	margin-left: 1%;
}*/
.address_box{
	font-size:95%;
}
.address_box div{
	margin-bottom: 12px;
}
.address_box span{
	display:inline-block;
}
.address_box span.small{
	font-size:85%;
}
.address_box .telfax{
	background:#bbb;
	color:#000;
	border-radius:2px;
	padding:0 4px 2px;
	margin-right:5px;
	font-size:75%;
	vertical-align: 0.2em;
}
.address_box .mapbox{
	box-shadow:3px 3px 0 #e70;
}

.address_box iframe{
	filter: grayscale();
	vertical-align:bottom;
}

.address_box i{
	margin-right:0.2em;
}
.boder_footer{
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid #bbb;
	display: flex;
	font-size: 90%;
}
.boder_footer span{
}
.boder_footer a{
	margin: 0 2em 0 0em;
	color:#fff;
	font-size:95%;
	text-decoration:underline;
}
.map{
	display: flex;
	width: 50%;

}
.map div:nth-child(1){
	width: 48%;
	margin-right: 2%;
	height: 200px;


}
.map div:nth-child(2){
	width: 50%;
	
}
@media(max-width:900px){
	.copyright{
		width:100%;
		text-align:center;
		padding:10px 0;
		border-top:1px solid #bbb;
	}	
	.boder_footer{
		display:none;
	}
}




/*------別ページのtop--------*/
.under_ttl_wrap{
	margin:calc( 6vw + 3px ) 0;
	display: flex;
	position: relative;
	align-items: center;

}
.under_ttl{
	width: 20%;
	height: 250px;
	position: relative;
}
.under_ttl::after{
	content: "";
	position: absolute;
	width: 200%;
	height: calc(120px + 10vw);
	background: #ee7700;
	z-index: -1;
	top: calc(2vw + 110px);
	left: 0;
}
.under_ttl_wrap .midashi_ttl{
	position: absolute;
	top: calc(-1vw + 54px);
	left: 62%;
	padding: 7% 20%;
	background: #fff;
	text-transform:
	uppercase;
	z-index:1;
}
.under_hero{
	width: 80%;
	background:#e70;
}
.under_hero img{
	opacity:0.5;
	object-position:75% 0;
}


/*パンくずリスト*/
.bread_list{
	text-align: right;
	margin: -5em 3em 1.5em;
	color: #000;
}
.bread_list_top{
	color: #000;
	transition: all 0.3s;
}
.bread_list_sankaku{
	margin-right: 3em;
	position: relative;
}
.bread_list_sankaku::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0%;
	margin-right: -1.7em;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #ee7700;
}
.bread_list_under{
	color: #000;
	transition: all 0.3s;
}
.bread_list a:hover{
	color: #ee7700;
}

.page_midashi_com{
	display: flex;
	width: 80%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
/*.page_midashi_com::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/company_logo.png) no-repeat;
	z-index: -1;
}*/
.page_midashi_com a{
	flex: 1;
	padding: 3% 0;
	border: 1px solid;
	color: #fff;
	background: #000;
	transition: all 0.3s;

}
.page_midashi_com a:hover{
	background: #ee7700;
}
/*パンくずリスト
施工実績のところだけ*/
.works_d{
	text-align: left;
	margin: 0 auto;
	color: #000;
	margin-top: calc( 6vw + 3px );
	padding: 10px 0;
	transition: all 0.3s;
}
.works_d a{
	transition: all 0.3s;
}
.works_d a:hover{
	color: #ee7700;
}



/*記事ページ*/
.article{
	margin: 9vw 0 0;
}
.article_wrap{
	max-width: 800px;
	margin: 6vw auto;
	width: 94%;
}
.article_time p{
	display: inline-block;
}
.article_time p:nth-child(2){
	background: #ee7700;
	color: #fff;
    padding: 1px 15px;
	margin-left: 1em;
	font-size: 13px;
}
.article_ttl h2{
	letter-spacing:1px;

}
.article_txt{
	margin: 3% 0;
}
.article_txt p{
	margin: 1.5em 0;
}
.article_txt div{
	/* margin: 0em 0 2em; */
}
.article_txt div.slick-list{
	margin:0
}


.return_btn{
	color: #000;
}

/*会社概要*/
.com_block{
	margin: 2% auto;
}
.com_midashi{
	margin: 0 auto;
	padding-top: 1px;
}
.contents_wrap .com_midashi:nth-child(2){
	margin: 3vw auto 0;
}
#message{
	display: flex;
}
.message_img{
	width: 40%;
}
.message_txt{
	width: 60%;
}
.com_block p{
	margin: 3% 0;
}
#philosophy h2{
	/* font-size: 2.3vw; */
	width: fit-content;
	margin: calc(5vw + 15px) auto 0;
}
#philosophy h2:nth-child(n + 2){

}
#philosophy h2 span{
	display: block;
	text-align:
	center;
	font-weight: normal;
	font-size: calc(15px + 0.6vw);
	margin:0.5em auto 0.7em;
	padding: 0 0.5em 0.1em;
	width:fit-content;
	border-bottom:2px solid #e70;
}
.philo_img{
	text-align: center;
	margin: 5% auto;
}
.philo_txt{
	width: fit-content;
	margin: 0 auto;
}
.conpany_information{
	margin: 0 auto;
	max-width: 800px;
}
.conpany_information dl{
	display: flex;
}
.conpany_information dt{
	width: 20%;
	text-align: center;
	font-weight: bold;
    padding: 0px 0px 20px 0px;
	margin: 20px 0 0 0;
    border-bottom: #ee7700 solid 3px;
}
.conpany_information dd{
	width: 80%;
	margin: 20px 0 0 0;
    padding: 0px 0px 20px 30px;
    border-bottom: #e5e5e5 solid 3px;
}
.kyoka_flex{
	display:flex;
	flex-wrap:wrap;
}
.kyoka_flex p{
	margin-top:0;
}
.kyoka_flex p:nth-child(odd){
	width: 11em;
}
.kyoka_flex p:nth-child(even){
	width:calc(100% - 11em);
}
@media(max-width:600px){
.kyoka_flex p:nth-child(odd){
		width:100%;
		margin-bottom:0.4em;
	}
	.kyoka_flex p:nth-child(even){
		width:95%;
		margin-left:5%;
		margin-bottom:1em;
	}
}

.timeline {
	margin: 0vw auto 5vw;
	max-width: 700px;
}


.timeline-list {
    padding: 40px 0;
}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-list-item .date {
    width: 20%;
    padding: 0 0 0 20px;
    color: #000;
    font-weight: bold;
}

.timeline-list-item .content {
    position: relative;
    width: 80%;
    padding: 0 20px 60px 30px;
    border-left: 1px solid #000;
}

/*.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -5px; 
    width: 10px;
    height: 10px;
    background-color: #ee7700;

}*/

.interview_youtube_intro{
	margin:60px 0 0
}
.interview_youtube_intro p:nth-child(1){
	font-size:24px;
	margin:20px 0
}
.interview_youtube {
    position: relative;
    width:90%;
    max-width:1000px;
    padding-bottom: 50.5%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 0 auto 1em;
}

.interview_youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


/*-----------------------
施工実績-詳細
------------------------*/
#works_detail{
	margin: 10% 0 5%;
}
.works_d_slide .flex_wrap{
	align-items: center;
}
.works_slid_txt{
	width: 30%;

}
.works_slid_img{
	width: 68%;
	margin-right: 2%;
}
.works_d_category{
	font-size: 13px;
	color: #000;
}
.works_slid_txt h3{
	margin: 20px 0;
}
.works_slid_txt p{
	font-size: 13px;
}
.thumbnail{
	margin-top: 50px;
}
.works_d_yazirushi{
	text-align: center;
	margin: 15% 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.works_d_prev,
.works_d_next{
	color: #000;
	font-size: 13px;
	vertical-align: baseline;
	position: relative;
	margin: 0 10px;
	transition: all 0.3s;
}
.grayout{
	color: #ccc;
}

a.works_d_prev:hover,
a.works_d_next:hover{
	color: #ee7700;
}
.works_d_prev span{
	position: absolute;
    top: 50%;
    left: -25%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
	border-width: 7.5px 13.0px 7.5px 0;
	border-color: transparent #ee7700 transparent transparent;
}
.works_d_next span{
	position: absolute;
    top: 50%;
    right: -25%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 13px;
    border-color: transparent transparent transparent #ee7700;
}
.works_d_prev.grayout span{
	border-color: transparent #ccc transparent transparent;
}
.works_d_next.grayout span{
    border-color: transparent transparent transparent #ccc;
}
.etc_works{
	background:#f0ebde ;
	padding: 5% 0;
}
.etc_works_ttl{
	margin-bottom: 50px;
}

.etc_works_txt{
	padding: 0.3em 0.8em;
	color: #000;
	line-height:1.3;
}
.etc_works_txt p{
	font-size:90%;
}

@media(max-width:900px){
	.etc_works_txt{
		font-size:90%;
	}	
}

/*--------------------------------
施工実績
--------------------------------*/
.works_table{
	margin: 5% 0;
}
.page_midashi_work{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.page_midashi_work a{
	width: 31.3%;
	padding: 3% 0;
	margin: 1%;
	border: 1px solid;
	color: #fff;
	background: #000;
	transition: all 0.3s;
}
.page_midashi_work a:hover{
	background: #ee7700;
}
.works_table_box{
	margin: 0;
	padding:13% 0 0;
}
.works_table_box .mask{
	height:15vw;
	max-height:240px;
}
@media(max-width:900px){
	.works_table_box .mask{
		height:30vw
	}
}

.works_table_box_ttl{
	text-align: center;
	font-weight: normal;
	letter-spacing: 2px;
	position: relative;
}
.works_table_box_ttl p{
	font-size: 10px;
	width: 200px;
	text-align:center;
	position: absolute;
	bottom: -40%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.works_table_box_ttl span{
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 4em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
}
.works_table_box_ttl::before{
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #ccc;
	background: -webkit-linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
	background: linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
}
.works_table_box .flex{
	flex-wrap: wrap;
	margin-top: 3%;
}
.img_link{
	width: 23.5%;
	margin: 2% 2% 0 0;
	background: #fff;
}
.img_link:nth-child(4n){
	margin-right:0;
}
.img_link .mask{
	height:15vw;
}
@media(max-width:900px){
	.img_link .mask{
		height:28vw;
	}
}
.img_link.img_link_nowrap4{
	margin: 2% 0 0 0;
}
.img_link:hover img{
	transform: scale(1.2);
}
.banner_link{
	width: 49.5%;
	margin: 2% 2% 0 0;
}
.banner_link.banner_link_nowrap2{
	margin: 2% 0 0 0;
}
.banner_link:hover img{
	transform: scale(1.2);
}
.nozoom:hover img{
	transform: none;
}


/*-------------------------------------
業務内容
--------------------------------------*/
.contants_OTT{
	margin: 8vw 0 5vw;
}

.business_intro{
	position: relative;
	text-align: center;
	border: 1px solid transparent;
}
.business_intro::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: url(../img/business_logo.png) no-repeat center top;*/
	background-size: calc( 44vw - -15px );
	z-index: -1;
}
.business_intro h3{
	font-weight: normal;
	margin: 40px 0;
	letter-spacing: 2px;
	line-height: 1.8;
}
@media(max-width:900px){
	.business_intro h3{
		letter-spacing:0;	
	}
}

.business_intro .tac span{
	display: block;
	width: 0;
	height: 0;
	margin: 0 auto 5px;
	border-style: solid;
	border-width: 13.0px 7.5px 0 7.5px;
	border-color: #ee7700 transparent transparent transparent;
}

.b_inner_icon{
	display: flex;
	padding: 0;
	list-style: none;
	margin-top: 5%;
}
.b_inner_icon li{

}
.b_inner_icon li:nth-child(1),
.b_inner_icon li:nth-child(2),
.b_inner_icon li:nth-child(3),
.b_inner_icon li:nth-child(4){
	margin-right: 2em;
	position: relative;
}
.b_inner_icon li:nth-child(1)::after,
.b_inner_icon li:nth-child(2)::after,
.b_inner_icon li:nth-child(3)::after,
.b_inner_icon li:nth-child(4)::after{
	content: "";
	position: absolute;
	top: 35%;
	right: 0;
	margin:0 -1em;
	width: 1px ;
	height: 50px;
	background: #000;
}
.b_inner_icon_link{
	display: block;
    padding: 1% 2%;
	text-align: center;
	position: relative;
}
.b_inner_icon_link h4 {
    color: #000;
    font-size: 120%;
    position: relative;
    width: fit-content;
    margin: 1em auto 0;
	transition: all 0.3s;
}
.b_inner_icon_link h4 span {
    display: block;
    color: #ee7700;
    font-weight: normal;
    font-size: 80%;
    position: absolute;
    top: -1em;
    left: -1.5em;
}
.b_inner_icon_link p{
	color: #ee7700;
    font-size: 80%;
}
.b_inner_icon_link img{
	width: 40%;
	margin-top: 10px;
}
.b_inner_icon_link::after{
	content: "";
	position: absolute;
	transition: all 0.3s;
    width: 0;
    height: 0;
	bottom: -15px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-width: 7px 4.5px 0 4.5px;
    border-color: #ee7700 transparent transparent transparent;
}
.b_inner_icon_link:hover::after {
	bottom: -25px;
}
.b_inner_icon_link:hover h4{
	color: #ee7700;
}


.sec_block{
	margin: 0;
	padding:12vw 0
	
}
.sec_block .flex{
	align-items: center;
}

.block_txt h2{
	font-size: 250%;
	margin: 0 auto 20px;
	width: fit-content;
	letter-spacing: 4px;
	position: relative;
	text-align: center;
}
.block_txt h2 span{
	font-size: 13px;
	font-weight: normal;
	color: #ee7700;
	position: absolute;
	top: -10px;
	left: -10px;
}
.block_txt h2 p{
	font-size: 13px;
	font-weight: normal;
	color: #ee7700;
	letter-spacing: 0;
}
/*.block_txt h2::after{
	content: "";
	position: absolute;
	top: 50%;
	right: -40%;
	width:20%;
	height: 2px;
	background: #000;	
}*/

.block_txt > p{
	line-height: 2;
}
.block_txt{
	width: 49%;
}
.block_txt.margin_right{
	margin-right: 2%;
	padding-bottom:10px
}
.block_txt.margin_left{
	margin-left: 2%;
	padding-bottom:10px;
}
.block_img{
	width: 49%;
}

.block_img.margin_right{
	margin-right: 3%;
}
.sec_block .flex .tac{
	color: #000;
}
.cont_tac{
	width: 70%;
	margin: 3% auto;
}
/*--------------- お問い合わせ ---------------*/
.contact1{
	margin: 30px auto;
}
.privacy ul{
	padding:0 0 0 1em;
}

.privacy li{
	padding:0;
	outline:0;
	margin: 25px 0 0 0;
	list-style:	decimal;
	font-size:90%;
}
.co_table{
	/* max-width: 900px; */
	width: 100%;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
}
/*.co_table dl{
	margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom: #CCC dotted 1px;
}*/
.co_table dt{
	float: left;
	margin-left: 5px;
}
.co_table dd{margin-left: 200px;
}
.co_table em{
	color: red;
	font-size: 0.7vw;
	font-weight: bold;
}
input,textarea,select{
	width: 100%;
	height: 30px;
	border: #ddd solid 1px;
	background-color: #f8f8f8;
	border-radius:5px;
	margin-bottom:15px
}
textarea{
	height:100px
}
.short{
	width: 200px;
	margin-bottom:10px
}
input[type="submit"]{
	width: auto;
	height: auto;
	text-align: center;
	border:1px solid;
	padding:8px 20px ;
	
}
input[type="checkbox"] {
    width: auto;
    height: auto;
}
.submit_tac{
	text-align: center;
}
.co_midashi1{
	position: relative;
}
.kazari_4{
	position: absolute;
	top:-30px;
	left:-40px;

}

/*----------- 太陽光 -------------*/
.solar{
}
.solar h2{
	font-size:200%
}
.solar h2 small{
	font-size:60%;
	color:#666;
}
.solar h4{
	font-size:140%;
	margin-top: 3.5em;
	margin-bottom:1em
}
.solar h5{
	margin:1.6em 0 0.7em;
	font-size:110%;
	color:#F70;
}
.solar_onayami p{
	font-size:110%;
	margin-bottom:0.5em;
}
.solar_onayami img{
	float:right;
	width:45%;
	margin-left:10px;
	margin-top:-1.5vw;
}
.solar_onayami ul{
	margin:1em 0;
	padding:0 0 0 1.8em;
}
.solar_onayami li{
	margin:12px 0
}
.solar_merit img{
	float:right;
	width:30%;
	margin:0 0 10px 15px;
}
.solar_contact{
	margin-top:20px;
}
.solar_contact > div{
	display:flex;
	margin-top:20px;
}
.solar_contact a:first-child{
	padding-right:3%
}
.solar_contact a:last-child{
	padding-left:3%
}
.solar_merit{
	width: 105%;
	margin-top:6vw;
	margin-left:-2.5%;
	padding:20px 3%;
	border:2px solid #e70;
	background:#fff8f0;
}
.solar_merit h4{
	margin-top:0.5vw;
}


/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1400px){
	.bread_list{
		margin: -3em 3em 1.5em;
	}
}
@media(max-width:1300px){
	.under_ttl::after {
		/* height: 10vw; */
		/* bottom: -5vw; */
	}

}
@media(max-width:1000px){
	.bread_list {
		margin: -1em 3em 1.5em;
	}
}
@media(max-width:900px){
	/*------共通---------*/
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex,.flex_wrap{
		flex-wrap: wrap;
	}
	/*------ sp menu --------*/
	.header_menu_sp{
		position: fixed;
		left: 53px;
		top: 12px;
		z-index: 3;
		background-color: #55321f;
		border-radius: 5px;
	}
	.header_menu_sp img{
		width: 34px;
		vertical-align:bottom;
	}
	.contents_box{
		margin: 20% auto;
	}
	.wrap2{
		margin: 50px 0 0;
	}
	/*----- sp under menu ------*/
	.sp_under{
		position: fixed;
		bottom: 0;
		text-align: center;
		width: 100%;
		display: flex;
		z-index: 1;
		font-family: 'Krona One', sans-serif;

	}
	.sp_under a{
		background-color: #55321f;
		font-size: 130%;
		display: inline-block;
		width: 50%;
		padding: 20px;
		color: #fff;
		letter-spacing: 3px;
	}
	.sp_under a:first-child{
		border-right:1px solid #fff
	}

	/*-------- contents -----------*/
	/*---- 別page共通------*/
	.under_ttl_wrap{
		margin: 0 0 calc( 6vw + 3px );
	}
	.under_hero img{
		height: 250px;
		object-fit: cover;
	}
	.under_ttl_wrap .midashi_ttl{
		/* right: unset; */
		left: 35%;
		/* top:18%; */
	}


	/*----------- contact page----------------*/




	/*topic*/
	.topic{
		padding: 9% 0;
		/* margin-top:2.5vw; */
	}
	.topic_box .flex{
		margin-top: 10px;
	}
	.topic_link, .topic_link:nth-child(4n){
		margin: 4% 4% 2% 0;
		width: 48%;
		min-height:
		unset;
	}
	.topic_link:nth-child(2n){
		margin-right:0;
	}

	/*works*/
	.works{
		padding: 10% 0;
	}
	.works::after{
		background-size: cover;
		background-position: right 60% bottom 0% ;
	}
	.works_box .flex{
		margin-top: 10px;
	}
	.works_link{
		margin: 4% 2% 0 0 ;
		width: 48%;
	}
	.works_link:nth-child(2n){
		margin: 4% 0 0 2%;
	}
	.works_link_btn{
		margin-top: 20px;
	}

	/*事業内容*/
	.business_ttl{
		top: 10%;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.business_copy {
		padding: 300px 0 0 0;
		margin: 0 auto;
		width: 80%;
	}
	.b_icon ul{
		flex-wrap: wrap;
	}
	.b_icon li{
		width: 100%;
		flex: none;
		margin-top: 30px;
	}
	.b_icon li:nth-child(1), .b_icon li:nth-child(2),.b_icon li:nth-child(4), .b_icon li:nth-child(5) {
		margin-right: unset;
		position: relative;
	}
	.b_icon li:nth-child(1)::after, .b_icon li:nth-child(2)::after{
		display: none;
	}

	/*footer*/
	.footer_logo{
		width: 100%;
		margin-bottom:4vw
	}
	.contact{
		width: 100%;
	}
	.footer_contact{
		display:
		inline-block;
		width: auto;
		min-width:22.5vw;
		margin: 5px auto;
		text-align:
		left;
	}
	.footer_menu{
		width: 100%;
		text-align: center;
	}
	.flex_address_menu{
		display: block;
	}
	.address{
		width: 100%;
	}

	/*topic_article*/
	/*companyページ*/
	.page_midashi_com{
		margin: 17% auto 0;
		flex-wrap: wrap;
	}
	.page_midashi_com a{
		width: 50%;
		flex: none;
		padding: 4% 0;
	}
	#philosophy h2{
		font-size:calc(11px + 1.2vw);
		text-align:center;
	}

	/*works_detail*/
	.works_slid_txt{
		width: 100%;
	}
	.works_slid_img{
		margin: 0;
		width: 100%;
	}
	.etc_works_box,
	.etc_works_box:nth-child(4){
		width: 47%;
		margin:3% 3% 0 0
	}
	/**/
	.page_midashi_work a{
		width: 48%;
	}
	.img_link{
		width: 48%;
		margin: 2% 2% 0 0;
	}
	.img_link:nth-child(2n){
		margin: 2% 0 0 2%;
	}
	.etc_works_txt span{
		font-size: 105%;
	}
	.works_table_box_ttl span{
		margin: 0 1em;
		text-align: center;
		line-height: 1.2;
		
	}
	.works_table_box .flex{
		margin-top: 10%;
	}

	/*事業内容*/
	.block_txt,
	.block_img{
		width: 100%;
	}





	.co_table{
		clear: left;
		float: left;
		/* width: 10%; */
	}
	.co_table dt{
		float: left;
		width:100%;
		/* border-bottom:1px solid #ccc; */
		margin:0 0 5px 0;
		font-weight:
		bold;
		}
	.co_table dd{
		margin-left: 0;
	}

}
@media(max-width:980px){
	.flex_address_menu{
		flex-wrap:wrap
	}
	.address,.copyright{
		width:100%
	}
	.address .address_box .mapbox, .address .address_box .mapbox img{
		height:12vw
	}
	.copyright{
		text-align:center
	}

}
@media(max-width:700px){
	#message{
		flex-wrap: wrap-reverse;
	}
	.message_txt,
	.message_img{
		width: 100%;
	}
}
@media(max-width:600px){
	.under_ttl{
		width: 40%;
	}
	.under_ttl::after {
		height: ;
		/* bottom: -45px; */
	}
	.under_ttl_wrap{
		margin: 0 0 0;
	}
	.bread_list{
		margin: 10vw 0 2.5vw 10px;
		text-align:
		left;
		/* writing-mode: vertical-rl; */
		-ms-writing-mode: tb-rl;
		/* -webkit-writing-mode:vertical-rl; */
	}
	.bread_list a,
	.works_d a{
		font-size: 13px;
	}
	.bread_list_sankaku{
		/* margin: 0 0 2em 0; */
	}
	.bread_list_sankaku::after{
		/* top: 50px; */
		/* left: 50%; */
		/* transform: translateX(-50%); */
		/* -webkit-transform: translateX(-50%); */
		-ms-transform: translateX(-50%);
		/* margin:0 0 -1em 0; */
		/* border-width: 8.7px 5px 0 5px; */
		/* border-color: #ee7700 transparent transparent transparent; */
	}
	.article{
		margin: 0 auto 10%;
	}
	.works_d{
		text-align: center;
	}
	.works_d .bread_list_sankaku{
		margin:  0 2em 0 0;
	}
	.works_d .bread_list_sankaku::after{
		top: 50%;
		right: 0%;
		left: unset;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		margin:0 -1em 0 0;
		border-width: 5px 0 5px 8.7px;
		border-color: transparent transparent transparent #ee7700;
	}
	/*会社情報*/
	#philosophy h2{
		/* font-size: 6vw; */
		width:
		fit-content;
		margin: 0 auto;
		letter-spacing: 2px;
	}
	.conpany_information dt{
		width: 30%;
	}
	.conpany_information dd{
		width: 70%;
	}
	.timeline-list-item .date{
		padding: 0;
		width: 40%;
	}
	.timeline-list-item .content{
		padding: 0 0px 50px 10px;
	}
	/*footer*/
	.address{
		flex-wrap: wrap;
	}
	.address .address_box{
		width: 100%;
		margin: 18px 0
	}
	.address .address_box .mapbox, .address .address_box .mapbox img{
		height:36vw
	}
	
	/*事業内容*/
	.b_inner_icon{
		flex-wrap: wrap;
		justify-content:center
	}
	.b_inner_icon li{
		width: 50%;
	}
	.b_inner_icon_link{
		margin: 0 0 15% 0;
	}
	.b_inner_icon li:nth-child(1),
	.b_inner_icon li:nth-child(2),
	.b_inner_icon li:nth-child(3),
	.b_inner_icon li:nth-child(4){
		margin-right: 0;
	}
	.b_inner_icon li:nth-child(2)::after,
	.b_inner_icon li:nth-child(4)::after{
		display: none;
	}
	.b_inner_icon li:nth-child(1)::after,
	.b_inner_icon li:nth-child(2)::after,
	.b_inner_icon li:nth-child(3)::after {
		margin: 0 0em;
	}
	.interview_youtube_intro p:nth-child(1) {
	    font-size: 16px;
	    margin: 20px 0;
	}


}
@media(max-width:560px){
	.address .address_box .mapbox, .address .address_box .mapbox img{
		height:auto
	}
}

