@charset "utf-8";
/* CSS Document */

/*header
=====================================================*/
#header{
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 90px;
	padding: 10px;
	z-index: 9999;
	transition: .4s all;
}
#header.fixed{
	height: 70px;
	background: #006ac2;
	padding: 0 20px;
	padding-right: 0;
	transition: .4s all;
}

.h_logo{
	height: 100%;
	width: 20%;
	max-width: 200px;
	min-width: 140px;
}
.fixed .h_logo{
	height: 80%;
}
.m1{
	display: flex;
	justify-content: flex-end;
	align-items: center;	
	height: 100%;
	width: 100%;
}

.gnav ul{
	position: relative;
	display: flex;
	align-items: center;	
	width: 100%;
}
.gnav ul li a{
	position: relative;
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 3px 1vw;
	color: #fff;
	font-size: clamp(16px, 1.5vw, 18px);
}
.gnav ul li a:hover,
.gnav li.has-child.active a{ 
	background: #fff;
	color:#3577CA; 
}

.gnav ul li:not(:last-child) a{
	border-right: 1px solid #fff;	
}
.gnav ul li.has-child a{
	padding-right:2vw;
}
.gnav ul li.has-child a::after{
	content:'';
	position: absolute;
	right:1vw;
	top:50%;
	width:6px;
	height:6px;
	border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: translateY(-50%) rotate(135deg);
}
.gnav li.has-child ul{
    position: absolute;
	left: 0;
	top: 40px;
	z-index: 4;
	justify-content: space-between;
	flex-wrap: wrap;
	background:#fff;
	width:100%;
 	display: none;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}

.gnav li.has-child ul a::after{
	display: none;
}
/* 最初は非表示 */
.gnav li.has-child > ul {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}

/* hover時 */
.gnav li.has-child:hover > ul,
.gnav li.has-child.active > ul {
  display: flex;
  visibility: visible;
  opacity: 1;
  width: 100%;
}

/* 子メニューの各アイテム横幅 */
.gnav li.has-child ul li {
  width: calc(100% / 3);
}

/*ナビゲーションaタグの形状*/
.gnav li.has-child ul li a{
	color: #3577CA;
	border-right: 1px solid #3577CA;
	text-align: center;
}
.gnav li.has-child ul li:last-child a{
	border-right: 0px solid #3577CA;
}


.gnav li.has-child ul li a:hover,
.gnav li.has-child ul li a:active{
	background:#3577CA;
	color: #fff;	
}

.h_tel{
	padding:0 1vw;
	font-size: clamp(1.25rem, 2vw, 28px);
	width: 25%;
	min-width: 205px;
	max-width: 275px;
}
.h_tel a{
	color: #fff;
}
.h_tel span{
	font-size: clamp(1rem, 0.072rem + 1.45vw, 1.25rem);
}

.h_tel a p{
	font-size: clamp(0.813rem, 0.349rem + 0.72vw, 0.938rem);
	text-align: end;
}
.h_mail{
	width: 20%;
	max-width: 180px;
	height: 100%;
	background: #fff;
  	text-align:center;	
	position: relative;
}
.h_mail a{
	width: 100%;
	height: 100%;
	padding: inherit ;
	position:absolute;
	top: 0;
    left: 0;
    place-content: space-evenly;
	color: #3577CA;	
	font-size: 120%;	
}

/*mobilnavi*/
.openbtn{
    z-index: 999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 70px;
    height:70px;
	position: relative;
	background: #3577CA;
	border: 1px solid #fff;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
	background: #fff;
  	width: 70%;
    left: 15%;
 }

.openbtn span:nth-of-type(1) {
	top:20%;	
}

.openbtn span:nth-of-type(2) {
	top:52%;
	left:15%;
	transform: translateY(-50%);
	font-size:1rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
}

.openbtn span:nth-of-type(3) {
	bottom:20%;
}

.openbtn.active span:nth-of-type(1) {
    top: 40%;
    left: 20%;
    transform: translateY(6px) rotate(-45deg);
    width: 65%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
	bottom: 40%;
    left: 20%;
    transform: translateY(-6px) rotate(45deg);
    width: 65%;
}

#g-nav{
    position:fixed;
    z-index: 888;
	display: none;
	top:-150%;
    left:0;
	width:100%;
    height: 100%;/*ナビの高さ*/
	background:url("../img/nav_bg.jpg");
	background-size: cover;
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
	display: block;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 888; 
    width: 100%;
    height: 100%;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    z-index: 888;
	margin: 80px auto 20px;
	width: 90%;
	max-width: 500px;
}
#g-nav li:not(:first-child) {	
	border-top: 1px dotted #333;
}
#g-nav li:last-child {	
	border-bottom: 1px dotted #333;
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#g-nav li.s_child_list{
	margin: 0 15px;
	border-top: 0px dotted #333;
}
#g-nav li.s_child_list a{
	padding: 5px 10px;
}
#g-nav i::before{
	color: #3577CA;
}
.sp_contct{
	text-align: center;
	margin-bottom: 30px;
}
.sp_contct h2{
	color: #3577CA; 
	margin-bottom: 15px;
}
.sp_contct a{
	display: block;
	width: 300px;
	margin: 0 auto;
	padding: 15px 20px;
	border: 1px solid #3577ca;
	background: rgba(255,255,255,0.3);
	font-size: 20px;
}

@media(min-width:1024px){
	.openbtn{
		display: none;
	}
}

@media(max-width:1023px){
	.gnav{
		display: none;
	}
}
@media(max-width:650px){
	.h_tel,.h_mail{
		display: none;
	}
	#header{
		height: 60px;
	}
	#header.fixed{
		height: 60px;		
		padding-right: 10px;
	}	
	.openbtn{
		width: 50px;
		height:50px;
		background: #fff;
	}	
	.openbtn span:nth-of-type(1),
	.openbtn span:nth-of-type(3){
		background: #3577ca;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 36%;
		left: 18%;
	}
	.openbtn span:nth-of-type(2) {
		font-size:.7rem;
		color: #3577ca;
	}	
	.openbtn.active span:nth-of-type(3) {
		bottom: 36%;
		left: 18%;
	}
}

/*footer
====================================================*/
footer{
	padding: 40px 0;
}
footer .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.f_info{
	width: 33%;
}
.f_info .f_logo{
	max-width: 350px;
	margin-bottom: 15px;
}
.copname{
	width: 80%;
	max-width: 400px;
	}
.f_right{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 64%;
}
.fnav{
	display: flex;
	justify-content: flex-end;
	gap:20px;
	width: 100%;
	font-size: 16px;
}
.fnav ul{
	width: calc(100% / 4 - 20px);
	font-weight: 600;
}
.fnav ul .chilled{
	position: relative;
	padding-left: 2rem;
	font-weight: 400;
}
.fnav ul .chilled::before{
	position: absolute;
	content: '';
	width: 1rem;
	height: 2px;
	background: #3577CA;
	top: 50%;
	left: .3rem;
	transform: translateY(-50%);
	
}

.fnav ul a:hover{
	color: #3577CA; 
	border-bottom: 1px solid #3577CA; 
}
.copy{
	text-align: end;
	font-size: clamp(13px,1.2vw,15px);
}

@media(max-width:1023px){
footer .inner{
	flex-direction: column;
	align-items: center;
}	
	.f_info{
		width: 100%;
		text-align: center;
		padding-bottom: 15px;
		border-bottom: 1px solid #eee;
	}

	.f_info .f_logo{
		margin: 0 auto 15px;
	}
	.copname{
		margin: 0 auto;
	}	
	.f_right{
		width: 100%;
	}	
	.fnav{
		display: none;
	}
	.copy{		
		padding-top: 10px;
	}	
}
@media(max-width:650px){
	footer{
		padding-bottom: 50px;
	}
}
@media(max-width:550px){
	.copy{		
		text-align: center;
	}	
}


/*spnavi
----------------------------*/
@media(min-width:651px){
	#spnavi{
		display: none;
	}	
}
  #spnavi {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #fff;
	border-top: 2px solid #3577CA;
  }
  #spnavi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #spnavi ul li {
    width: 50%;
    border-right: 1px solid #fff;
  }
  #spnavi ul li:last-child {
    border-right: none;
	background: #3577CA; 
  }
  #spnavi ul li a {
    display: block !important;
    padding: 5px 0;
    text-align: center;
    color: #3577CA;
    font-size: 1rem;
    line-height: 2;
  }
  #spnavi ul li:last-child a{
    color: #fff; 
  }
  #spnavi ul li a.sp_tel:before {
    font-family: "Font Awesome 6 Free";
    content: "\f095";
    font-weight: 900;
  }
  #spnavi ul li a.sp_contact:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0e0";
    font-weight: 900;
  }
  #spnavi ul li a span {
    font-size: 1rem;
	margin-left: 5px;  
  }


/*TOPslide
=====================================================*/
.t_fv{
	padding: 95px 0 0;
	width: 100%;
	height: 100vh;
	background: url("../img/fv_bg.jpg");
	background-size: cover;
	overflow: hidden;
}
.t_fv::before{
	position: absolute;
	content: '';
	background: url("../img/text_fujiken.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 80%;
	width: 10vw;
	top: 15vh;
	left: 2vw;
}

.t_slider {
  position:relative;
	z-index: 1;
	height: calc(100vh - 85px);/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	width: 80%;
	margin: auto 7% 0 13%;
	overflow: hidden;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/slide01.jpg);
	background-position: center bottom;
}

.slider-item02 {
    background:url(../img/slide02.jpg);
}

.slider-item03 {
    background:url(../img/slide03.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
.catch{
	position: absolute;
	content: '';
	max-width: 60%;
	top:35%;
	left: 5vw;
	z-index: 2;
}
.catch h3{
	width: 60%;
}
@media(max-width:1024px){
	.t_fv{
		padding: 95px 0 0;
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}	
	.t_fv::before{
		top: 10vh;
	}	
	.t_slider {
		width: 87%;
		margin: auto 0 0 13%;
		height: 100%;
	}
	.slider-item {
		width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
		height: auto;
		aspect-ratio: 4 / 3;
		background-repeat: no-repeat;/*背景画像をリピートしない*/
		background-position: center;/*背景画像の位置を中央に*/
		background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
	}	
}
@media(max-width:650px){
	.t_fv{
		padding: 70px 0 0;
	}		
}


/* index
------------------------------*/
.t_sec01{
	padding-top: 150px;
	background: linear-gradient(to right,transparent , transparent 50% , #dcf2ff 50%, #dcf2ff 100% );
}
.t_txt {
    width: 65%;
    max-width: 650px;
}
.secimg {
	position: absolute;
	content: '';
}
.tr1{	
	width: 30vw;
	aspect-ratio: 9 / 16;
	top: 5vw;
	right: 0;
}
.tl1{	
	width: 30vw;
	z-index: 1;
}
.tl2{
	width: 25vw;
	top: 20vw;
	left: 25vw;	
	z-index: 2;
}
@media (max-width: 1024px){
		.tl1{	
		width: 40vw;
		margin-top: -40px;
	}
	.tl2 {
		width: 30vw;
		top: auto;
		bottom: 30px;
		left: 35vw;
	}
}
@media (max-width: 767px){
	.t_sec01{
		padding-top: 80px;
		background: linear-gradient(to left, #dcf2ff, #dcf2ff 80% , transparent 80%, transparent 100% );
	}
	.t_txt {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
	}	
	.tr1{	
		width: 30vw;
		aspect-ratio: 9 / 16;
		top:auto;
		bottom:-45vw;
	}

}


.t_sec02{
	background: linear-gradient(to right, #dcf2ff , #dcf2ff 80% , transparent 80%, transparent 100% );
}

.t_sec02 ._top{
	margin-top: -100px;
	padding-left: 50px;
}
.t_txt_2 {
    width: 55%;
    max-width: 600px;
}
.link_box{
	width: calc(100% / 3 - 30px);
	z-index: 1;
}
.link_box dt{
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	z-index: 1;
}
.link_box dt a{
	display: block;
	width: 100%;
	height: 100%;
}
.link_box dt::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.link_box dt.link1::before{
	background: url("../img/img04.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link_box dt.link2::before{
	background: url("../img/img05.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link_box dt.link3::before{
	background: url("../img/img06.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link_box dt::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(1,0,175,0.40);
	z-index: -1;
}
.link_box dt .text{
	position: absolute;
	z-index: 1;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 65%;
}
.link_box dd a{
	margin: 15px 0;
	display: block;
	width: 100%;
	line-height: 2;
	border-top: 1px solid #3577CA;
	border-bottom: 1px solid #3577CA;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;	
}
@media (max-width: 1024px){
	.t_sec02 ._top {
		margin-top: -90px;
		padding-left: 0;		
	}	
	.t_txt_2 {
		width: 98%;
		max-width: 98%;
		margin: 0 auto;
	}
	.link_box{
		width: calc(100% / 3 - 15px);
	}		
}
@media (max-width: 768px){
	.link_box{
		width: calc(100% / 2 - 15px);
		margin: auto;
	}
}
@media (max-width: 550px){
	.link_box{
		width: calc(100% - 15px);
		margin:0 auto 15px;
	}
}
.t_recruit{
	background: #2e3192;
	
}
.spimg{
	display: none;
}
@media (max-width: 1024px){
	.t_recruit{
		padding: 5vh 0;
	}
}
@media (max-width: 550px){
	.t_recruit{
		padding: 1vh 0;
	}
	.pcimg{
		display: none;
	}	
	.spimg{
		display:block;
	}	
}

/*下層　共通
=========================================================*/
.kfv{
	background: #006ac2;
	padding: 95px 0 0;
	z-index: 0;
}
.pagetitle{
	height: 200px;
	font-size: 2rem;
	color: #fff;
	width: 40vw;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; 
	font-weight: 400;
}

.kfv_img{
	position: absolute;
	content: '';
	height: 200px;
	width: 60vw;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.kfv_img img{
	object-fit: cover;
}
@media (max-width: 650px){
	.kfv{
		background: #006ac2;
		padding: 65px 0 0;
		z-index: 0;
	}
	.pagetitle{
		font-size: 1.5rem;
		height: 150px;
	}	
	.kfv_img{
		height: 150px;
	}	
}
@media (max-width: 450px){
	.pagetitle{
		font-size: 1.5rem;
		height: 150px;
		width: 100vw;
		text-shadow: 0 2px 3px #333;
		align-items: center;
	}	
	.kfv_img{
		height: 150px;
		width: 100%;
	}	
}

/*パンくず
--------------------*/
.breadcrumbs {
	color: #fff;
	font-size: 16px;
}
.breadcrumbs a {
	text-decoration: none;
	color: #aaa;
}
.breadcrumbs ul {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.breadcrumbs li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color: #aaa;
}
.breadcrumbs li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.breadcrumbs li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #ffffff;
}
.breadcrumbs li:last-child::before {
	content: normal;
}
@media (max-width: 450px){
	.breadcrumbs {
		font-size: 14px;
	}
	.breadcrumbs a {
		color: #006ac2;
		text-shadow: 0 0 0 transparent;
	}
	.breadcrumbs li::before{
		color: #fff;
	}
}
/*施工事例
=====================================*/
.d_sec01{
	background: #f8fdff;
	z-index: 0;
}
.d_sec01::before{
	position: absolute;
	content: '';
	background: url("../img/bg_img.png");
	background-size: 100%;
	background-repeat: repeat-y;
	width: 100%;
	height: 100%;
	top: 0;
	filter: opacity(20%);
	z-index: -1;	
}
.list_grid{
	display: grid;
	grid-template-columns:repeat(2, 1fr);
	gap:50px 3%;
}

.b_list{
	font-size: clamp(14px,2vw,16px);
}
.b_list .stitle{
	font-size: clamp(15px,2vw,17px);
}

.list_info{
	display: flex;
	justify-content: space-between;
}
.b_list figure{
	aspect-ratio: 8 / 5;
	width: 90%;
	margin: 0 auto;
}
.list_info figure{
	width: 50%;
	padding-right: 2%
}
.list_info figure img{
	object-fit: cover;	
}
.list_info dl{
	width: 48%;
	min-width: 230px;
}
.list_info dd{
	margin-bottom: 15px;
}
.b_list dt{
	position: relative;
	font-size: clamp(16px,2vw,18px);
	padding-left: 1.2rem;
	border-bottom: 1px dotted #3577CA;
	margin-bottom: 5px;
	font-weight: 600;
}
.b_list dt::before{
	position: absolute;
	content: '\f219';
	font-family: "Font Awesome 6 Free";
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 13px;
	color: #55B8FF;
}
.b_list dd{
	padding: 0 10px;
	font-size: clamp(14px,2vw,16px);	
}
.b_list small{
	color: #3577CA;
}
@media (max-width: 1023px){
	.list_info{
	flex-direction: column
	}
	.list_info figure{
		width: 90%;
		padding: 0;
		margin: 0 auto 10px;
		overflow: hidden;
	}
	.list_info dl{
		width: 100%;
		min-width: auto;
	}
}
@media (max-width: 767px){
	.list_grid{
		display: block;
	}
	.b_list{
		margin-bottom: 30px;
	}
  .list_info {
    flex-direction: row; /* 元のflex-directionに戻す */
  }
	.list_info figure{
		width: 50%;
		padding-right: 2%
	}
	.list_info dl{
		width: 48%;
		min-width: 230px;
	}
}
@media (max-width: 530px){
	.list_info{
	flex-direction: column
	}
	.list_info figure{
		width: 90%;
		padding: 0;
		margin: 0 auto 10px;
		overflow: hidden;
	}
	.list_info dl{
		width: 100%;
		min-width: auto;
	}
}
/*工事経歴
=====================================*/
.table_wrap {
    overflow: auto;

}
.table_wrap .history {
    min-width: 730px;
}

.history th{
	font-weight: 400;
	font-size: 14px;
	border: 1px solid #999;
	border-bottom: 0px;
	padding: 5px 0;
	background: #EAF7FF;
}
.history th:not(:nth-child(3)){
	width: 100px;
}
.history td{
	font-size: 16px;	
	text-align: center;
	border: 1px solid #999;
	line-height: 1.3;
	padding: 5px 7px;	
	background: #fff;
}
.history td.min{
	font-size: 13px;
}
.history td.mid{
	font-size: 14px;
}
.history td:nth-child(3){
	text-align: left;
}
@media (max-width: 650px){
	#h_paip p,#h_water p,#h_mainte p{
		text-align: left !important;
	}
	.history td{
		font-size: 14px;	
	}	
	.history td.mid{
		font-size: 13px;
	}
}
/*採用
=====================================*/
.equipment_wrapper{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.equipment_wrapper .box{
	width: 48%;
	border: 2px solid #3577CA;
	box-shadow: 1px 1px 5px #666;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.equipment_wrapper .box:nth-child(odd){
	margin-bottom: 3% !important;
}
.equipment_wrapper .box:nth-child(2n){
	margin-top: 3% !important;
}
.equipment_wrapper .box .img{
	width: 40%;
}
.equipment_wrapper .box .text{
	width: 56%;
}
@media (max-width: 1200px){
	.equipment_wrapper .box{
		width: 100%;
	}
.equipment_wrapper .box:nth-child(odd){
	margin-bottom: 0% !important;
	margin-top: 3% !important;
}	
}
@media (max-width: 750px){
	.equipment_wrapper .box{
		display: block;
	}
	.equipment_wrapper .box .img{
		width: 100%;
		margin-bottom: 15px;
	}
	.equipment_wrapper .box .text{
		width: 100%;
	}

}

.r_table th{
	border-bottom: 1px solid #3577CA;
	font-weight: 400;
	text-align: left;
	padding: .5rem 1rem;
	width: 30%;
}
.r_table td{
	border-bottom: 1px solid #999;
	padding: .5rem 1rem;
	width: 70%;
}
@media (max-width: 767px){
	.r_table{
		font-size: 15px;
	}	
}

/*会社概要
=====================================*/
.a_policy{
	width: 50%;
	max-width: 500px;
	min-width: 300px;
	margin: 0 auto;
}
.a_policy_txt li{
	background-color: #dcf2ff;
	clip-path: polygon(0 0, 100% 0%, 99% 100%, 0% 100%);
	align-items: center;
}
.a_policy_txt li+li{
	margin-top: 4px;
}
.a_policy_txt li .num{
	display: inline-block;
	font-weight: bold;
	background-color: #006ac2;
	color: #fff;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	margin-right: 30px;
}
.a_policy_txt li:first-child .num{
	border-top: 0px;
}
.a_policy_txt li p.txt{
	width: calc(100% - 70px);
}

.a_sec02{
	background: #f8fdff;
	z-index: 0;
}
.a_sec02::before{
	position: absolute;
	content: '';
	background: url("../img/bg_img.png");
	background-size: cover;
	width: 100%;
	height: 100%;
	top: 0;
	filter: opacity(20%);
	z-index: -1;	
}
.a_table{
	border-collapse:separate;
	border-spacing: 0 6px;
}
.a_table tr{
}
.a_table tr:last-child{
	border-bottom: none !important;
}
.a_table th,
.a_table td{
	padding: 18px 0;
	letter-spacing: 0.08em;
}
.a_table th{
	position: relative;
	background: #2061C0;
	width: 200px;
	font-weight: 500;
	color: #fff;
}
.a_table th::after{
    position: absolute;
    top: calc(50% - 10px);
    right: -8px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #2061C0;
}
.a_table td{
	padding-left: 20px;
	padding-right: 20px;
	background: #fff;
	border: 1px solid #2061c0;
}
.iso{
	display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.iso img{
	width: 50%;
	max-width: 150px;
}
@media (max-width: 750px){
	.a_table tr{
		border-width: 4px;
	}
	.a_table th,
	.a_table td{
		padding: 18px 0;
		font-size: 0.9rem;
	}
	.a_table th{
		width: 120px;
	}
	.a_table td{
		padding-left: 20px;
		padding-right: 20px;
	}
}
.map{
	width: 100%;
	height: 40vh;
}
.a_sec03{
		background: linear-gradient(to left, #dcf2ff , #dcf2ff 80% , transparent 80%, transparent 100% );
}

.history_img,.history_text{
	width: 48%;
}
.timeline{
	width:100%;
	margin:50px auto;
	padding:0 30px;
}

.timeline li{
    /*線の起点とするためrelativeを設定*/
    position: relative;
	list-style: none;
	padding:0 0 20px 0;
}

.timeline dl{
	margin:0 0 20px 3em;
}
.timeline dt{
	font-weight: 600;
}
/*絶対配置で線を設定*/
.border-line {
    /*線の位置*/
	position: absolute;
	left:0.2em;
	top:11px;
	width:2px;/*線の太さ*/
	height:0;/*はじめは高さを0に*/
	background: #ACC5EA;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after{
	content:'';
	position: absolute;
	top:11px;
	left:0;
	width:10px;
	height: 10px;
	background:#2061c0;
	border-radius: 50%;
}

@media (max-width: 1023px){
	.flex.river{
		flex-direction: column-reverse;		
	}
	.history_img{
		width: 100%;
	}
	.history_text{
		width: 100%;
		max-width: 600px;
		margin: 0 auto 20px;
	}
}


/*お問い合わせ
=====================================*/
.contact .tel_contact .wrap{
	background-color: #f5f5f5;
	padding: 20px;
	display: flex;
	justify-content: left;
	align-items: center;
}
.contact .tel_contact .wrap .sub{
	font-size: 1.8rem;
	margin-right: 40px;
	font-weight: 500;
	letter-spacing: 0.08em;
}
.contact .tel_contact .wrap .sub a{
	display: inline-block;
	white-space: nowrap;
	color: #2061C0;
}
.contact .tel_contact .wrap .sub a i{
	font-size: 0.8em;
}
.contact .tel_contact .wrap .sub a:hover{
	opacity: 0.6;
}
.contact .tel_contact .wrap .info{
	
}
.contact .tel_contact .wrap .info p{
	font-size: 0.9rem;
}
@media (max-width: 960px){
	.contact .tel_contact .wrap{
		display: block;
	}
	.contact .tel_contact .wrap .sub{
		font-size: 1.8rem;
		margin-right: 0;
	}
	.contact .tel_contact .wrap .sub a{
		font-size: 2rem;
	}
}




/*メールフォーム*/
.mailform{
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #ccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row span.hissu{
	color: #fff;
	background: #2061C0;
}
.mailform .row span.ninni{
	background: #f9f5f4;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .box.mini{
	width: 120px !important;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #f4f4f4;
	border-radius: 2px;
	margin-left: 5px;
	border: 1px solid #ccc;
}
.mailform .postal_btn:hover{
	opacity: 0.7;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #2061C0;
	border: 1px solid #2061C0;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #2061C0;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #2061C0;
    border-bottom: 3px solid #2061C0;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #2061C0;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #2061C0;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*プライバシーポリシー*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	
}
.privacy li .privacy_wrap .privacy_subject{
	text-align: center;
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	text-decoration: underline;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
}
.privacy li .privacy_wrap .privacy_subject:hover{
	text-decoration: none;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}

/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background-color: #f5f5f5;
	margin-top: 5px;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #2061C0;
	font-size: 0.9rem;
	font-weight: 500;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #433c2e;
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}





