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


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;	
}
body {
font-size: 15px;
line-height: 1.75;
letter-spacing: 0.1em;
font-family: 'Noto Sans JP', sans-serif; 
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;        
color: #2a2a2a;        
}
.space{
text-indent: -1.5em;
padding-left: 1.5em; 
display: block;    
} 

.fullscreenmenu{
display: none;
}
	.h100{
height: 100px;		
	}
	.h50{
height: 50px;		
	}
	.h30{
height: 30px;		
	}	
	.h20{
height: 20px;		
	}
	.h10{
height: 10px;		
	}
.w98{
width: 98%;
display: block;
margin: 0 auto;
}
.w90{
width: 90%;
display: block;
margin: 0 auto;
}

a{
	text-decoration: none;	
}
li{
	list-style-type: none;
}
h1,h2,p,.copyright{
color:#fff;
font-weight: normal;	
}
section{
padding: 100px 0;    
}
.center_box{
  width: -moz-fit-content;
width: fit-content;  
margin: 0 auto;
display: block;   
}

.headline{
color: #0642BB;
font-size: 1.5em;
text-align: center;    
}
.text-shadow {
text-shadow: 
       1px  1px 1px #ffffff,
      -1px  1px 1px #ffffff,
       1px -1px 1px #ffffff,
      -1px -1px 1px #ffffff,
       1px  0px 1px #ffffff,
       0px  1px 1px #ffffff,
      -1px  0px 1px #ffffff,
       0px -1px 1px #ffffff;   
    }
.text1{
font-size: 1em;  
line-height: 200%; 
color: #000;    
}
.text1 strong{
font-size: 1.5em;    
display: block;  
line-height: 1.5;    
}
.text2{
font-size: 1.3em;    
line-height: 1.5;     
}

.sp_l{
      text-align: center;
    }

.tb_l{
      text-align: center;
    }
.background1{
width: 100%;
display: block;
margin: 0 auto ;
background:url("../img/back1.jpg");
background-size: cover;
background-position: center;
}
.background2{
width: 100%;
height: auto;   
background:rgba(6,66,187,0.03);
display: block;    
}
.background3{    
background: #0642BB;    
}
.container {
max-width: 1170px;
width: 95%;
margin: 0 auto;
text-align: center;		
}

.flex-box1{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:space-between;
align-items:center;    
}
.flex-box2{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:space-between;
align-items:flex-start;    
}
/*TOPスライダー*/
.slider-box{
width: 100%;
height:100vh;  
display: block; 
position: relative;
}
.slider-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,0.2) 30% , rgba(0,0,0,0.0) 100%);
    background-position: center,left bottom;
    background-size: cover ,600px;
    background-repeat: no-repeat;
}

.text_img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  width:800px;
  text-align: center;
 z-index: 5;    
}
.text_img img{
width: 100%;    
}


/*パンクズ */
.breadcrumb {
position: absolute;
bottom: 20px;
left: 20px;    
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
font-size: 0.8em;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #fff;
}

.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb .item_text{
color: #fff;    
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;/*色*/
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb .fa-home{
color:#BF0404; 	
}
/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:50px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:20%;
    /*テキストの形状*/
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#fff;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#fff;
}


.heading{
 font-size: 2em;    
}
.midashi_l h2{
width: 100%;     
font-size: 1.5em;		
text-align:left;	
font-weight: 700;   
color: #2a2a2a;  
line-height: 1.5;    
}
.midashi_l strong{
font-size: 2em;		
color: #2a2a2a;   
display: block;    
text-align: left;  
z-index: -5;
display: block; 
font-weight: 700;      
}

.midashi_c h2{
width: 100%;     
font-size: 1.5em;		
text-align:center;	
font-weight: 700;   
color: #2a2a2a; 
line-height: 1.5;    
}
.midashi_c strong{
font-size: 2em;		
display: block;    
text-align: center;  
z-index: -5;
display: block; 
color: #2a2a2a;  
font-weight: 700;      
}

.contener{
max-width: 1170px;
 width: 98%;   
display: block;
margin: 0 auto;
}



.top_menu{
width: 100%;
height: auto;
display: inline-block;
 padding: 0 1em;   
}

.top_menu .menu_t{
width: 100%;
display: flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;    
}

.top_menu .menu_t .logo{
width:300px;	
}
.top_menu .menu_t .logo img{
width:100%;	
display: block;
margin: 0 auto;
}


.top_menu .m1{
width: 65%;	   
}

.top_wrapper{
width: 100%;   
height: auto;    
position:fixed;
top:0; 
left: 0;
z-index: 10;
height: auto;
transition: all 0.5s;	
}
.top_wrapper.transform{
  background: linear-gradient(to right, #5E92FB, #0642BB);   
z-index: 900;
}
.top_wrapper .top_menu .menu_t .logo_c{
    display: none;
}

.top_wrapper.transform .top_menu .menu_t .logo_c{
  display: block;
}

.top_wrapper .top_menu .menu_t .logo_w{
    display: block;
}

.top_wrapper.transform .top_menu .menu_t .logo_w{
   display: none;
}
/*==ナビゲーション全体の設定*/
nav{
  color: #5070b0;
  text-align: center;
    padding: 1em 0;
}
/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: flex;
  justify-content:right;
}
nav ul .small{
display: block;
font-size: 0.8em; 
color: #e4e4e4;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
  position: relative;
margin-left: 30px;      
}

/*ナビゲーションのリンク設定*/
nav ul li a{
  display: block;
  text-decoration: none;
  color: #FFF;
  transition:all .3s;
   font-weight: 700; 
    font-size:0.9em;
}


nav ul li a::after {
  border-bottom: solid 3px #ED7B1F;
  bottom: 0;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
nav ul li a:hover::after {
  width: 100%;
}



.t-con{
width: 100%;
display: flex;    
flex-wrap:wrap;
justify-content:flex-end;
align-items:center; 
margin-top: 1em;    
}
.t-blue{
background:  #0642BB; 
border:1px solid #fff;  
color: #fff;  
font-weight: 500;    
}
.t-blue:hover{
background: #fff;
border:1px solid #0642BB;
color:  #0642BB;  
}
.t-white{
background: #fff;
border:1px solid #0642BB;
color:  #0642BB;
font-weight: 500;    
}
.t-white:hover{
background:  #0642BB; 
border:1px solid #fff;  
color: #fff;   
}
.t-btn1{
width: 250px;	    
font-size: 1em;	   
transition: all 0.5s;    
display: block;  
text-align: center; 
padding: 0.5em 0;
margin-left: 15px;  
vertical-align: middle;   
border-radius: 50px; 
}


@keyframes bg_slide {
    100% {
        transform-origin: left top;
        transform: scaleX(1.0);
    }
    0% {
        transform-origin: left top;
        transform: scaleX(0.0);
    }
}


/*===ボタン===*/

.button {
  background: linear-gradient(to right, #5E92FB, #0642BB);   
     border:2px solid #0642BB;  
  position: relative;
  display: inline-block;
 color: #fff;
  text-align: center;
  text-decoration: none;
  transition: .3s;
    display: block;
    margin: 0 auto;
    z-index:0;
    padding: 0.5%;
    border-radius: 5px;
    font-size: 1em;
    margin: 3% auto 0;
    overflow: hidden;
    width: 300px;
    border-radius: 50px;
    font-weight: 700;
}
.button:hover {
  color:#0642BB;
   border-radius: 50px;
     border:2px solid #0642BB;  
}
.button::before {
  position: absolute;
     background: #fff;  
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
      z-index: -1;
}

/*====ご挨拶===*/

.greeting-box{
width: 100%;
height: auto;
display: inline-block;
background: url("../img/greeting1.jpg");    
background-size: cover;
background-position: center;
background-repeat: no-repeat;    
}

.greeting{
width: 100%; 
height: auto;   
padding: 5%;  
background: rgba(255,255,255,0.5);    
}

.greeting-text strong{
font-size: 1.3em;
display: block; 
 font-weight: 500; 
text-align:center;    
}
.greeting-text {
display: block;
margin: 0;    
font-size:1em;
text-align:left;
line-height:200%;  
color: #000;    
}

/*===共通===*/

.item-box_flex1{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:space-between;
align-items:flex-end; 
position: relative;
}
.item-box_flex2{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:space-between;
align-items:center; 
position: relative;    
}
.item_back1{
position: absolute;
bottom:0;
left: 0;
width: 100%;
height:50%;    
background:rgba(6,66,187,0.3); 
z-index: -1;    
}

.item_back2{
position: absolute;
bottom:0;
left: 0;
width: 100%;
height: 280px;       
background-color: #d7e3f9;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%230642bb' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");  
z-index: -1;      
}
.item-box{
width: 100%;
height: auto;
display: block;  
position: relative;    
}
.item-t1{
width: 60%;   
padding: 0 1em;    
position: absolute;
bottom: 7px;
right: 10px; 
background: #fff;  
padding: 1em 2em;
}
.item-p1{
width: 50%;   
padding-bottom: 20px;    
}
.item-p1 img{
width: 100%; 
}
.item-t2{
width: 45%;
padding:5%;    
display: block;    
}

.item-p2{
width: 55%;   
}
.item-p2 img{
width: 100%;
}
.item-t3{
width: 30%;
padding:5%;    
display: block; 
position: absolute;
top: 50%;
left: 50%;    
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%); 
background: #fff;    
}
.item-p3{
width: 50%;      
}
.item-p3 img{
width: 100%;
    
}
.item-t4{
position: absolute;
bottom: 20%;
left: 40%;      
width: 50%; 
background: #fff;  
padding: 1em;   
}
.item-p4{
width: 50%;    
}
.item-p4 img{
width: 100%;    
}
/*====コンテンツ===*/
.btn3{  
display: block;
margin: 0 auto;
}
.button3{
    display:block;
    text-align:center;
    color:#fff;
    cursor:pointer;
    text-decoration: none;
     font-size: 1em;
    width:200px;    
transition: all 0.5s; 
    padding: 1%;
    border-radius: 50px;
background: linear-gradient(to right, #5E92FB, #0642BB);    
}
.button3:hover{
    background: linear-gradient(to right, #0642BB , #5E92FB);
text-decoration: transparent;  
}
.contents-box{
width: 98%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:center;
align-items:center;  
margin: 0 auto;
}
.contents{
width:calc(100% / 2);    
    position: relative;
      transition: all 0.5s;	
overflow: hidden;   
height: auto;   
}

.cont-box{
width: 100%;   
display: block;
}
.cont-box img{
width: 100%; 
object-fit: cover;    
  transform: scale(1.1);
  transition: .3s ease-in-out; 
    transition: all 0.5s;	
    opacity: 0.8;
    object-fit: cover;
  
}
.cont-box:hover img {
  transform: scale(1.3);
    text-decoration: transparent;
    opacity: 0.5;
}
.contents:hover{
background-color:#0642BB;
     text-decoration: transparent;
}
.c-box{
position: absolute;
bottom:5%;
right:3%; 
 text-align: center; 
    z-index: 50;
}
.contents_text1{
font-size: 1.5em; 
position: absolute;
top:5%;
left: 3%;  
width: 100%;
line-height: 1.3;
font-weight: 700;
color:#2E2454;
}

.contents_text1 strong{
color: #0642BB;   
font-weight: 700;    
}
/*====全ページ共通フッターメニュー===*/
footer{
width: 100%;
display:block;
text-align: center;	   
}
footer .footer-box{
height:auto; 
width: 100%;    
display: block;   
}
footer .footer-box .footer-back{
padding: 50px 0!important;     
width: 100%; 
background:url("../img/footer_back.jpg");
background-position: bottom;
background-size: cover;    
padding: 2% 0  0;  
background-attachment: fixed;  
display: block;    
}

.con-text{
font-size: 1.5em;
text-align:center;
color: #fff;     
}
.f-contact{
width:100%;
display: flex;    
flex-wrap:wrap;
justify-content:center;
align-items:center;    
}
.f-address{
padding: 50px 0;    
width: 100%;
background: linear-gradient(to right, #fad3b4, #ED7B1F);     
}
.f-address img{
width: 300px;
display: block;
margin: 0 auto;
}
.f-con{
width:300px;
margin: 0 1em;    
}
.f-con a{
border:1px solid #fff;
padding:1em 1%;
font-size: 1.5em;  
display: block;  
color: #fff;    
transition: all 1s;  
background: linear-gradient(to right, #5E92FB, #0642BB);  
border-radius: 50px;    
}
.f-con a:hover{
background: linear-gradient(to right, #0642BB , #5E92FB); 
border-radius: 50px; 
text-decoration: transparent;    
}
.f-con p{
border:1px solid #fff;
padding:1em 1%;
background: linear-gradient(to right, #0642BB, #5E92FB);  
border-radius: 50px;
font-size: 1.5em;      
}

.f_text{
width: 100%;    
text-align: center;
color: #fff; 
display: block;
margin: 0 auto;
font-size: 1em;  
text-align: 1.75;    
}

footer .f-text1{
text-align: center;	
color: #fff;
font-size: 1.1em;	
line-height: 1.75;	
}
footer .f-text2{
text-align: center;	
color: #333;
font-size: 1.3em;
line-height: 1.6;       
}
footer .copyright small{
text-align: center;	
color:#fff;
padding:1% 0;
display: block;	
background:#000;  
font-size: 0.8em;  
font-weight: 700;
}
/*===私たちの家づくり===*/
.about-box{
max-width:350px;  
width: 98%;
display: block; 
margin: 1em auto;
}
.about-box img{
width: 70%; 
display: block;
margin: 0 auto;
}
.about-box p{
text-align: left;
}
.about-box .number{
  font-size: 2em;
  color: #ED7B1F;
  display: block; 
  text-align: center;
  font-family: 'Lobster', cursive;    
}
/*===施工実積===*/
.works-box{
width: 100%;
position: relative;
}
.timeline {
    width: 100%;
    margin: 28px auto;
}
/*===業務内容===*/
.service-box{
width: 100%;
height: auto;
display: block;    
}
.service-box h3 {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}

.service-box h3:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f7d9";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.flow-box{
width: 100%;    
}
.flow-box h3 {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
    color: #fff;
}

.flow-box h3:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f015";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #fff; /*アイコン色*/
}
.flow{
border-bottom: 1px solid #fff; 
  
}
.flow-titl{  
width: 100%;
height: auto;  
display: flex;
align-items:center;
 justify-content:flex-start;  
padding:0;         
}
.flow-titl p{
width: 100%;    
font-weight: 700; 
font-size: 1.2em; 
text-align: left; 
color: #333;  
 margin: 0 auto;  
     border-bottom: solid 1px #0642BB;   
}
.flow-titl strong{
  font-size: 1.5em;   
    font-weight: 700; 
    color:#0642BB;
}
.flow-text{  
width: 100%;
height: auto;    
display: flex;
align-items:center;
 justify-content:flex-start;    
}
.flow-text p{
width: 100%;      
font-weight: 500; 
font-size: 1em;
text-align: left;  
color: #333;    
margin: 0 auto;
padding-left: 0;    
}


.flow-box .toggle {
	display: none;
}
.flow-box .Label {		/*タイトル*/
	display: block;
    background:#0642BB; 
    border-bottom: 1px solid #8d8d8d;
}
.flow-box .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 10px );
	right: 30px;
	transform: rotate(135deg);
    text-decoration: transparent;
}
.flow-box .Label,
.flow-box .open {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.8s;

}
.flow-box .open {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 1em;;
	overflow: hidden;
}
.toggle:checked + .Label + .open {	/*開閉時*/
	height: auto;
	transition: all .5s;
    background: #fff;
    padding: 1em;
}
.toggle:checked + .Label {	/*開閉時*/
	height: auto;
	transition: all .5s;
    border-bottom: 0px solid #fff;
}

.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
    text-decoration: transparent;
}
.sirasu-box{
width: calc(98% / 4);    
background: rgba(6,66,187,0.1);
padding: 1em;    
}
.sirasu-box img{
width: 50%; 
margin: 0 auto;
display: block;    
}
.sirasu-box p{
text-align: center;
color: #0642BB;
font-weight: 700;
}
.area-box{
width: 100%;    
}
.area_map{
width: 90%;
display: block;
margin: 0 auto;
background: #fff;      
}
.area_map img{
width: 60%;  
margin-left: 40%;
}
.area_text{
position: absolute;
top: 50%;
left: 30%;    
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);        
}
.area_text p{
font-weight: 700;
 font-size: 2em;  
color: #333;    
}
/*===会社概要===*/
.company {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}
.company-box .company-text1{
font-family: 'Yuji Syuku', serif;  
font-size: 1.5em;
line-height: 200%;    
color: #333; 
text-align: left;
}
.company-box strong{
font-size: 2em; 
text-align: center; 
color: #0642BB;    
}
.company-text2{
font-size: 15em;
color: rgba(6,66,187,0.1);
  top: 50%;
left:50%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);   
position: absolute;
font-family: 'Lobster', cursive;    
}
.company:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1ad";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.time {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}

.time:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f550";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.map {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}

.map:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f5a0";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.timeline-list {
    padding: 40px 0;
}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
    background: #0642BB;
    position: relative;
}
.time-text{
color: #2E2454 ;   
position: absolute;
 top: 50%;
left:10%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);   
}
.timeline-list-item .date {
    width: 20%;
    padding: 0 0 0 20px;
    color: #2E2454;
    font-weight: bold;
    font-size: 1em;
}
.timeline-list-item:nth-child(odd){
background: rgba(6,66,187,0.2);    
}
.timeline-list-item:nth-child(even){
background: rgba(6,66,187,0.05);    
}
.timeline-list-item .content {
    position: relative;
    width: 80%;
    padding: 0 20px 60px 30px;
    border-left: 1px solid #aaaaaa;
}

.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    -webkit-transform : translateY(-50%);
transform : translateY(-50%); 
    background-color: #0642BB;
    border-radius: 10px;
}
.map-box{
width: 100%;    
}
.map-box iframe{
    height: 500px;   
}
/*===========採用情報===========*/

.tab{
  display: flex;
  flex-wrap: wrap;
justify-content:center;    
}
.tab li a{
  display: block;
  background:#ddd;
  margin:0 2px;
  padding:10px 20px;
 color: #0642BB;
 font-weight: 700;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background:#fff;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/*========= レイアウトのためのCSS ===============*/

ul{
  list-style:none;
}

.recruit-box{
width: 100%;    
}
.recruit-box h3 {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}

.recruit-box h3:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f234";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.recruit table {   
width: 100%;  
border-bottom: 1px #eee solid; 
border-top: 1px #eee solid;
border-right: 1px #eee solid;
background: #fff;    
}
.recruit tr{
width: 100%; 
}

.recruit th{  
width: 40%; 
padding: 1% 1em;  
text-align: center; 
font-size: 1em; 
border-bottom: 1px #eee solid;    
font-weight: 400; 
background: #0642BB; 
color: #fff;    
}
.recruit td{    
padding: 1% 1em; 
width:60%;    
text-align: left;
font-size: 1em;  
border-bottom: 1px #eee solid;      
}
.illust4{
position: absolute;
height: 100%;
 top: 50%;
left:50%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);    
z-index: -1;    
}
/*========= お問い合わせ ===============*/

.contact-box{
width: 100%;
height: auto;
display: block;  
position: relative;
padding: 2%;   
}
.c-img{
width: 100%;
position: absolute;
bottom: 0;
right: 0;
z-index: -1;    
}


.c-con{
width:100%;   
height: auto; 
padding: 1em;       
}

.contact-text1{
font-size: 1em;
line-height: 200%;    
text-align: left;
color: #333;    
}
.contact-text1 .orange{
	background-color:#ED7B1F;
	font-size:0.6em;
	padding:1px;
    margin-right: 5px;
    line-height:1.8;  
    color: #fff;
    font-weight: 500;
}
.c-tel{
max-width: 600px; 
width: 98%;    
height: 150px; 
background: rgba(255,255,255,0.5);  
position: relative;
margin:1em auto 0.5em;  
    
}
.c-tel a{
position: absolute;
width: 90%;  
top: 50%;
left:50%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);      
font-size: 2em; 	
transition: all 0.5s;	 
display: block;     
width: 100%;  
text-align: center;
font-weight: 500;
line-height: 1.2;  
color: #0642BB;    
}
.c-tel:hover a{
text-decoration: transparent;	
opacity: 0.6;     
}
.c-tel strong{
font-size: 0.7em; 
margin-bottom: 1em;  
display: block;  
color: #333;     
}
.c-tel .small{
font-size: 0.4em;
display: block; 
color: #333;    
}
.c-fax{
max-width: 600px; 
width: 98%;    
height: 150px; 
background: rgba(255,255,255,0.5);  
position: relative;
margin:0.5em auto 1em;     
}
.c-fax .fax-t{
position: absolute;
width: 100%;  
top: 50%;
left:50%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);      
font-size: 2em; 	
transition: all 0.5s;	 
display: block;     
width: 100%;  
text-align: center;
font-weight: 500;
line-height: 1.2;  
color:#0642BB;    
}
.c-fax strong{
font-size: 0.7em;    
margin-bottom: 1em;  
display: block;
color: #333;    
}
.c-fax .small{
font-size: 0.4em;
display: block; 
color: #333;     
}
.m-brder{
border-right: 2px solid #eee;
}
.c-con .con-text1{
font-size: 2em;
transition: all 0.5s;	
display: block;     
width: 100%;  
text-align: center; 
}

.con-text2{
font-size: 1em;  
color: #fff;     
}
.con-text2 .small{
font-size: 0.9em;
color: #fff; 
display: block; 
}
.contact-wrapper{
width: 100%;	
}
.contact-tel{
font-size: 2em;
display: block; 
transition: all 0.5s;   
width: 100%;
text-align: center; 
width: 50%;
margin: 0 auto;
color: #fff;     
} 
.contact-tel:hover{
text-decoration: transparent;	
background: #004020;  
color: #fff;    
}

.contact-tel .small{
font-size: 0.7em;
display: block;  
border-bottom: solid 1px #fff;
padding: 1% 0;    
}
.contact-fax{
font-size: 2em;;
display: inline-block; 
font-weight:500;  
width: 100%;
text-align: center;    
color: #004020;    
} 

.tel-box{
width: 100%;  
}
form{
	width: 100%;
	text-align: center;
}
.checkbox_text{
line-height: 1.75;	
}
.mailform{
width: 98%;
}
#mail h3 {
  position: relative;
  padding: 0 1.5em;
  line-height: 1.4;/*行高*/
   font-size: 1.5em; 
    text-align: left;
}

#mail h3:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0e0";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  bottom: 0;/*アイコンの位置*/
  color: #0642BB; /*アイコン色*/
}
.mailform table{
width: 100%;    
 
}

.mailform table .orange{
	background-color:#ED7B1F;
	font-size:0.7em;
	padding:0.5%;
    margin-right: 5px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}



.mailform table th{
	font-size: 1em;
	text-align: left;
	padding-left: 2%; 
    border-bottom: 1px dotted #b0b0b0;
    font-weight: 400;
}

.mailform table td p{
	font-size: 1em;
	padding-top: 1%;
	line-height: 1.7;
}
.mailform table td img{
width:100%;	
margin-top: 1%;	
border-radius: 50px;	
}
.mailform table td{
font-size: 1em;
padding: 2% 1%;
width: 70%; 
border-bottom: 1px dotted #b0b0b0;   
text-align: left;
}

.mailform table td iframe{
height: 400px;	
}

.text-y{
width: 50%!important;    
}
.text{
width: 100%!important;    
}
textarea{
width:100%!important; 
}
.mailform dd p{
	margin-top: 1%;
	font-size:1.1em;
	letter-spacing: 4px;
	line-height: 1.75;
}

.single p{
	text-align: center;
}


.form-button
{
margin: 5% 0;
text-align: center;
}

.form-button button {
    cursor: pointer;
    display: block;
    margin: 0 auto 5px;
    padding: 10px 0 10px;
    color: #fff;
    text-align: center;
    width: 250px;
	transition: all 0.5s;	
    border:1px solid #fff; 
    background:#0642BB;
    border-radius: 50px;
}
.form-button button:hover{
     background:#fff;  
    color: #0642BB;
    border:1px solid #0642BB;
	text-decoration: transparent;
}
.textarea, textarea, .dropdown {
    border-radius: 2px;
}

input[type=checkbox] + label {
cursor: pointer;
}

button[type="submit"]{
	font-size:1em;
	padding: 10px;
}

input[type="checkbox"]{
	font-size: 1em;
	margin-left: 2%;
	margin-bottom: 2%;
	border:1px solid #bababa;	
}
input[type="text"]{
	height: 40px;
	font-size: 1em;
	padding: 10px;
	background:#fff;
	border:1px solid #bababa;
}
input[type="email"]{
	height: 40px;
	font-size: 1em;
	padding: 10px;
	background:#fff;
	border:1px solid #bababa;
}

textarea[type="text"]{
padding: 10px;	
font-size: 1em;	
background:#fff;	
border:1px solid #bababa;	
}
.accordion h4{
font-size: 1em;
text-align: left;
padding-bottom: 3px;	
letter-spacing: 2px;
border-bottom: 1px solid #eee;
padding-left: 1%;
color: #333;  
    font-weight: 400;
}
.accordion p{
font-size:0.9em;
text-align: left;
letter-spacing: 2px;
padding: 1% 0;	
padding-left: 1%;
color: #333;  
}

.toggle {
	display: none;
}
.Label {
    font-size: 1em;
	padding:1% 1% ;
	display: block;
	border-bottom:#0642BB solid 1px;
    color: #0642BB;
    font-weight: 700;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #3B3628;
	border-right: 2px solid #3B3628;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
    text-decoration: transparent;
    margin-bottom: 1em;
}
.Label,
.open {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}
.open {		/*本文*/
	height: 0;
	margin-bottom:10px;
	overflow: hidden;
}
.toggle:checked + .Label + .open {	/*開閉時*/
	height: auto;
	transition: all .5s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
    text-decoration: transparent;
}
