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


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;	
}
body {
font-size: 15px;
line-height: 1.9;
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: #fff;        
background: #333;
}


.fullscreenmenu{
display: none;
}
	.h100{
height: 100px;		
	}
	.h50{
height: 50px;		
	}
	.h30{
height: 30px;		
	}	
	.h20{
height: 20px;		
	}
	.h10{
height: 10px;		
	}

/* ローディング画面設定*/
#splash{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #11BF82;
	text-align:center;
	color:#fff;
}
/* アニメーション*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeIn{
animation-name: fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
      transform: translateY(3px);  
  }

  to {
    opacity: 1;
        transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger{
    opacity: 0;
}


/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name: fadeUpAnime;/*アニメーションの定義名*/
animation-duration:0.5s;/*アニメーション変化時間 ※デフォルト*/
animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
opacity:0;
}

/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*==================================================
アニメーション設定
===================================*/

/* アニメーション１回分の時間の長さを指定するCSS*/

.change-time05{
  animation-duration: 0.5s;
}

.change-time1{
  animation-duration: 1s;
}

.change-time15{
  animation-duration: 1.5s;
}

.change-time2{
 animation-duration: 2s;
}

.change-time25{
animation-duration: 2.5s;
}
.change-time3{
animation-duration: 3s;
}
.change-time4{
animation-duration: 4s;
}
.change-time45{
animation-duration: 4.5s;
}
.change-time5{
animation-duration: 5s;
}
.change-time55{
animation-duration: 5.5s;
}
.change-time6{
animation-duration: 6s;
}
.change-time65{
animation-duration: 6.5s;
}
.change-time7{
animation-duration: 7s;
}
.change-time75{
animation-duration: 7.5s;
}

/* 動きをループさせるCSS*/

.count2{
animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{
 animation-iteration-count: infinite;/*無限ループ*/
}


/* アニメーションの開始を遅らせるCSS*/

.delay-time05{
animation-delay: 0.5s;
}

.delay-time1{
animation-delay: 1s;
}

.delay-time15{
animation-delay: 1.5s;
}

.delay-time2{
animation-delay: 2s;
}

.delay-time25{
  animation-delay: 2.5s;
}


/* アニメーションの進行具合を操作するCSS*/

.timing-ease{
animation-timing-function:ease;
}

.timing-ease-in{
animation-timing-function:ease-in;
}

.timing-ease-out{
animation-timing-function:ease-out;
}

.timing-ease-in-out{
animation-timing-function:ease-in-out;  
}

.timing-linear{
animation-timing-function:linear; 
}

.timing-steps{
animation-timing-function:steps(4, end);  
}

.timing-cubic-bezier{
animation-timing-function:cubic-bezier(.17,.67,.67,.51);  
}

/*==================================================
アニメーションをまとめて設定する
===================================*/

.fadeDown{
animation: fadeDownAnime 1s ease 1.5s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
opacity:0;
}

/*アニメーションの開始から終了までを指定する*/
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


#splash_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 500px;
	animation: load_apper 1s ease-in-out;/*ロゴが現れるまでの時間(◯秒かけて出現)*/
}
#splash_logo img{
	display: block;
	width: 100%;
}
@keyframes load_apper{
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
a{
	text-decoration: none;	
}
li{
	list-style-type: none;
}
h1,h2,p,.copyright{
color:#fff;
font-weight: normal;	
}

.pc{
display: block!important;    
}
.sp{
display: none!important;
}
section{
padding: 100px 0;    
}
.center_box{
  width: -moz-fit-content;
width: fit-content;  
margin: 0 auto;
display: block;   
}


.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;   
    }
.en{
 font-family: 'EB Garamond', serif;      
}
.text1{
font-size: 1em;  
line-height: 1.9; 
font-weight: 400;
}
.text1 strong{
font-size: 1.5em;    
display: block; 
line-height: 1.5; 
font-family: 'Noto Serif JP', serif;    
}
.text2{
font-size: 1.3em;  
line-height: 1.9;       
font-family: 'Noto Serif JP', serif;     
}
.heading1 {
	position: relative;
	padding-bottom: 20px;
	font-size:1.3em;
	text-align: center;
    font-family: 'Noto Serif JP', serif; 
    font-weight: 400;
   
}
.heading1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
    
	border-style: solid;
	border-width: 10px 20px 0 20px;
	border-color: #BF8211 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
}
.heading2{
  position: relative;
  color: #fff;
       background: linear-gradient(-50deg, #BF8211 10%, #A6831B 50%, #F2DE79 60%);
  background: -webkit-linear-gradient(-50deg, #BF8211 10%, #A6831B 50%, #F2DE79 60%);
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 1.8em;
  font-size:1.3em;   
    font-family: 'Noto Serif JP', serif; 
    font-weight: 400;
}

.heading2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまでの距離*/
}
.heading3 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	text-align: center;
        font-family: 'Noto Serif JP', serif; 
    font-weight: 400;
    width: 85%;
    margin: 0 auto;
}

.heading3::before,
.heading3::after {
	content: '';
	width: 3px;
	height: 40px;
          background: linear-gradient(-90deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);
  background: -webkit-linear-gradient(-90deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);   
}

.heading3::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading3::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
.sp_l{
      text-align: center;
    }

.tb_l{
      text-align: center;
    }
.background1{
width: 100%;
background: #000;
background: url("../img/background5.jpg");
background-size: cover;
background-position: center;
}
.background2{
width: 100%!important;
background: url("../img/background2.jpg");
background-size: cover;
background-position: center;
}

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

.flex-box1{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:center;
align-items:center;    
}
/*TOPスライダー*/
.slider-box{
width: 100%;
height:100vh;  
display: block; 
position: relative;
margin: 0 auto;
}
.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;
  bottom: 5%;
  left:5%;
  max-width:800px;
width: 70%;    
  text-align: center;
 z-index: 5;    
}
.text_img img{
width: 100%;    
}


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

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

.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;
}


.gradation{
 display: inline-block;
  background: linear-gradient(180deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  background: -webkit-linear-gradient(-90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;      
}
.midashi_l h2{
width: 100%;     
font-size: 1.3em;		
text-align:left;	
line-height: 1.5;  
font-family: 'EB Garamond', serif;  
}
.midashi_l .strong{
font-size: 1.5em;		  
display: block;    
text-align: left;  
display: block; 
font-family: 'Noto Serif JP', serif; 
color: #fff;    
}

.midashi_c h2{
width: 100%;     
font-size: 1.3em;		
text-align:center;	 
line-height: 1.5;    
font-family: 'EB Garamond', serif;   
  
}
.midashi_c .strong{
font-size: 1.5em;		
display: block;    
text-align: center;  
font-family: 'Noto Serif JP', serif;
display: block; 
color: #fff;     
}

.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:900px;	   
}

.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:#000;   
z-index: 85;
}

/*==ナビゲーション全体の設定*/
nav{
  text-align: center;
    padding: 1em 0;
}
/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: flex;
  justify-content:flex-end;
}
nav ul .small{
display: block;
font-size: 0.8em; 
color: #fff;
font-family: 'EB Garamond', serif;     
}


/*下の階層の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: 500; 
    font-size:0.9em;
}


nav ul li a::after {
  border-bottom: solid 1px #A6831B;
  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:900px;
display: flex;    
flex-wrap:wrap;
justify-content:flex-end;
align-items:center; 
margin-top: 1em;    
}

.t-btn1{
width: 200px;	    
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; 
 background: linear-gradient(-10deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);    
color:#fff;    
transition: all 0.8s;
font-weight: 500;
}
.t-btn1:hover{
  background: #fff;
color: #73450D;   
text-decoration: transparent;    
}
.t-btn2{
width: 200px;	    
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; 
  background: #fff;
color: #73450D; 
transition: all 0.8s;
font-weight: 500;    
}
.t-btn2:hover{
 background: linear-gradient(-10deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);    
color:#fff;    
text-decoration: transparent;    
}
@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/background1.jpg");    
background-size: cover;
background-position: center;
background-repeat: no-repeat;    
background-attachment: fixed;    
position: relative;
 z-index: 0;
  overflow: hidden;
}


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

.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:1.9;  
color: #fff;  
font-family: 'Noto Serif JP', serif;        
}

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

.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{
max-width: 300px;
width: 100%;    
}
.item-p1{
max-width: 450px;
width: 100%   
}
.item-p1 img{
width: 100%; 
display: block;
margin: 0 auto;
}
.item-t2{
width: 50%;  
padding: 3%;    
}
.item-p2{
width: 50%;    
}
.item-p2 img{
width: 100%; 
display: block;
margin: 0 auto;
}
.table{
width: 100%;
height: auto;
display: block;  
 background: rgba(0,0,0,0.5);    
padding: 3%;    
} 
.table table{
width: 100%;   
border-spacing: 0;    
}
.table table th{
width: 30%;  
padding: 1em;  
border-bottom: #A6831B 1px solid;    
}
.table table td{
width: 70%; 
border-bottom: #eee 1px solid;
padding: 1em;     
}
.fa-check{
 	  background: linear-gradient(180deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  background: -webkit-linear-gradient(-90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: 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% / 6);   
height: 300px!important;    
position: relative;
transition: all 0.5s;	
overflow: hidden;   
height: auto;  
display:  block;
 background: #000;     
}


.contents img{
width: 100%; 
height: 100%;
display: block;        
transform: scale(1.0);
transition: all 0.5s;	
opacity: 0.6;
object-fit: cover;  
}
.contents:hover img {
  transform: scale(1.05);
    text-decoration: transparent;
    opacity: 0.9;
}
.contents:hover{
     text-decoration: transparent;
}
.c-box{
position: absolute;
bottom:5%;
right:3%; 
 text-align: center; 
    z-index: 50;
}
.contents_text1{
font-size: 1em; 
position: absolute;
top: 50%;
left: 50%;
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);  
line-height: 1.3;
color: #fff;
 width: 90%;
text-align: center;
text-shadow: 0 0 5px #000;   
font-family: 'EB Garamond', serif;      
}

.contents_text1 strong{
font-size: 1.5em;  
display: block;    
color: #fff;
font-family: 'Noto Serif JP', serif;    
}
/*====エリア===*/
.area-box{
width: 100%;    
}
.area-box p{
color: #fff;  
border-bottom: 1px solid #555;
padding-bottom: 1%;    
}
/*====会社概要===*/
.about-box{
width: 100%;    
}
.about-box table{
width: 100%;
    border-bottom: 1px solid rgba(242,222,121,0.5);
     border-top: 1px solid rgba(242,222,121,0.5);   
} 
.about-box table tr{
    border-bottom: 1px solid rgba(242,222,121,0.5);
  border-image-slice: 1;  

}
.about-box table th{
font-weight: 400;
    padding: 1em; 
width: 30%;    
}
.about-box table td{
font-weight: 400;
        padding: 1em;
width: 70%;    
}
.about-p{
width: 200px;    
}
.about-p img{
width: 100%;    
}
/*====全ページ共通フッターメニュー===*/
footer{
width: 100%;
display:block;
text-align: center;	   
}
footer .footer-box{
height:auto; 
width: 100%;    
display: block;   
}
.footer-back{
padding: 50px 0 !important;     
width: 100%; 
background:url("../img/footer_back.jpg");
background-position: top;
background-size: cover;    
padding: 2% 0  0;  
background-attachment: fixed;  
display: block; 
position: relative;
z-index: 0;    
}

.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: url("../img/background3.jpg"); 
background-size: cover;
background-position: center;
}
.f-address img{
max-width: 300px;
width: 70%;    
display: block;
margin: 0 auto;
}
.f-con{
max-width:280px;
width: 70%;    
margin: 1em;    
}
.f-con a{
width: 100%;    
background: linear-gradient(-10deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%); 
color: #fff; 
 border: 1px solid #A6831B;
  border-image: linear-gradient(to right, #F2DE79 0%, #A6831B 100%);
  border-image-slice: 1;    
padding:1em 1%;
font-size: 1.2em;  
display: block;   
transition: all 1s;  
font-weight: 500;
}
.f-con a:hover{
background: #fff;    
 text-decoration: transparent;
 border: 1px solid #A6831B;
  border-image: linear-gradient(to right, #F2DE79 0%, #A6831B 100%);
  border-image-slice: 1;
color: #A6831B;      
}
.f-con p{
width: 100%;       
background: linear-gradient(-10deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%); 
color: #fff;  
 border: 1px solid #A6831B;
  border-image: linear-gradient(to right, #F2DE79 0%, #A6831B 100%);
  border-image-slice: 1;    
padding:1em 1%;
font-size: 1.3em;  
font-weight: 500;    
}


footer .copyright small{
text-align: center;	
color:#fff;
padding:1% 0;
display: block;	
background:#000;  
font-size: 0.8em;  
}
/*========= ご依頼の流れ・Q&A ===============*/
.ba{
width:300px;   
height: 300px;  
display: block;
padding: 1%;    
}
.ba img{
width: 100%;
height: 100%;
display: block;
object-fit: cover;    
}
.arrow{      
font-size: 3em;    
color: #fff; 
}
/*========= ご依頼の流れ・Q&A ===============*/
.flow-box{
width: 100%; 
display: flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;   
position: relative;  
background: #000;
padding: 2em;    
}
.flow-text{
padding:1em;
width: 70%;    
}
.flow-photo{
width: 30%;    
}
.flow-photo img{
width: 100%;    
}
.flow-text strong{
  border-bottom: solid 1px #A6831B;
  position: relative; 
  padding-bottom: 10px;  
  margin-bottom: 10px;    
}

.flow-text strong:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 1px #F2DE79 ;
  bottom: -1px;
  width: 30%;
}
.number{
font-size:1.5em; 
position: absolute;
top: 1em;
left:1em;    
color: #fff;  
font-family: 'EB Garamond', serif;  
     background: linear-gradient(-50deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);
  background: -webkit-linear-gradient(-50deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%); 
padding:0 1em;    
}

.faq p{
font-size:0.9em;
text-align: left;
letter-spacing: 2px;
padding: 1% 0;	
padding-left: 1%;
color: #fff;
font-weight: 400;    
}
.faq p span{
 	  background: linear-gradient(90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  background: -webkit-linear-gradient(90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;     
font-size: 1.3em;   
display: block;       
}
.faq .Label span{
      background: linear-gradient(-90deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);
  background: -webkit-linear-gradient(-90deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);   
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;     
font-size: 1.5em;   
display: block;    
}
.faq .toggle {
	display: none;
}
.faq .Label {
    font-size:1em;
	padding:1% 3em 1% 1% ;
	display: block;
   border-bottom: solid #fff 1px;
    color: #fff;
}
.faq .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
    text-decoration: transparent;
    margin-bottom: 1em;
}
.faq .Label,
.faq .open {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}
.faq .open {		/*本文*/
	height: 0;
	margin-bottom:10px;
	overflow: hidden; 

}
.faq .toggle:checked + .Label + .open {	/*開閉時*/
	height: auto;
	transition: all .5s;
}
.faq .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
    text-decoration: transparent;
}
/*========= 採用 ===============*/
.recruit-text{
font-size: 1.5em;
border-top: 1px solid #BF8211;
border-bottom: 1px solid #BF8211; 
color:#BF8211; 
text-align: center;
margin-bottom: 1em;    
font-family: 'Noto Serif JP', serif;        
}
.staff{
 width:calc(100% / 3);   
 padding: 1em;
  background: rgba(0,0,0,0.5);    
}
.staff img{
width: 100%;    
}
/*========= お問い合わせ ===============*/


.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; 
margin:2% auto 0;
display:flex;
justify-content:center;  
flex-wrap:wrap;    
}


.contact-text1{
font-size: 1em;
line-height: 1.9;    
text-align: left;  
}
.contact-text1 .green{
	  background: linear-gradient(180deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  background: -webkit-linear-gradient(-90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;     
	font-size:0.6em;
	padding:0.5em;
    margin-right: 5px;
    line-height:1.8;  
    color: #fff;
     border: solid 1px #4EBF11;
}

.c-tel{
max-width: 400px;       
width: 100%;    
position: relative;   
margin: 0.5em;  
 background: rgba(0,0,0,0.5);    
padding: 1em 0.5em;  
}
.c-tel .con-text1{
width: 100%;      
font-size: 1.8em;
transition: all 0.5s;	 
display: block;     
width: 100%;  
font-weight: 500;
line-height: 1.2;  
padding: 3%;
text-align: center;
font-family: 'EB Garamond', serif;     
color: #F2DE79;    
}
.c-tel:hover .con-text1{
text-decoration: transparent;	
opacity: 0.6;     
}

.c-tel .con-text1 .small{
font-size: 0.5em;
color: #fff;
display: block;
margin: 0.5em;    
font-family: 'Noto Sans JP', sans-serif;    
line-height: 1.9;        
}
.c-fax{
max-width: 400px;       
width: 100%;    
position: relative;   
margin: 0.5em;  
 background: rgba(0,0,0,0.5);  
padding: 1em 0.5em;      
    
}
.c-fax .con-text1{
width: 100%;      
font-size: 1.8em;
color: #F2DE79;      
transition: all 0.5s;	 
display: block;     
width: 100%;  
font-weight: 500;
line-height: 1.2;  
padding: 3%;
text-align: center;
font-family: 'EB Garamond', serif;     
}


.c-fax .con-text1 .small{
font-size: 0.5em;
color: #fff;
display: block;
margin: 0.5em; 
font-family: 'Noto Sans JP', sans-serif;     
line-height: 1.9;    
}
.m-brder{
border-right: 2px solid #eee;
}


.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.9;
color: #333;	
}
.mailform{
width: 98%;
}
.mailform table{
width: 100%;    
 
}

.mailform table .green{
	  background: linear-gradient(180deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
  background: -webkit-linear-gradient(-90deg, #4EBF11 10%, #11BF2B 62%, #11BF82 90%);
    -webkit-background-clip: text;
-webkit-text-fill-color: transparent; 
	font-size:0.7em;
	padding:0.5em;
    margin-right: 5px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border: solid 1px #4EBF11;
}
.about-map{
width: 100%;    
}


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

.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;   
}
.map-button{
max-width:150px;  
width: 100%;    
border: solid 1px #02B0FA;
color:#02B0FA; 
background: #fff;  
display: block!important;
margin:1%;
transition: all 0.5s; 
text-align: center;
padding: 1%;    
font-size:1em;  
font-weight: 500;
}
.map-button:hover{
background: #02B0FA;
color:#fff;    
text-decoration: transparent;
    
}
.mailform table td iframe{
height: 400px;	
}

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

.single p{
	text-align: center;
	color:#333;
}


.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 #333; 
     background: linear-gradient(-50deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);
  background: -webkit-linear-gradient(-50deg, #F2DE79 10%, #A6831B 50%, #BF8211 60%);
}
.form-button button:hover{
        background:#fff;
    border: #BF8211 1px solid;
    color: #BF8211;
	text-decoration: transparent;
}
.textarea, textarea, .dropdown {
    border-radius: 2px;
}
::placeholder {
 color:#929292;
}
label{
cursor: pointer!important;
width: 100%;    
display: block;     
}
input[type=checkbox] + label {
cursor: pointer!important;
}

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!important;
	font-size: 1em;
	padding: 10px;
	background:#fff;
	border:1px solid #bababa;
}
input[type="email"]{
    width: 100%;
	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 dotted #eee;
padding-left: 1%;
color: #fff;  
font-weight: 500;       
}
.accordion p{
font-size:0.9em;
text-align: left;
letter-spacing: 2px;
padding: 1% 0;	
padding-left: 1%;
color: #fff;
font-weight: 400;    
}
.accordion {
}
.accordion .toggle {
	display: none;
}
.accordion .Label {
    font-size: 1em;
	padding:1% 1% ;
	display: block;
   border-bottom: solid #BF8211 1px;
    color: #BF8211;
}
.accordion .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #BF8211;
	border-right: 2px solid #BF8211;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
    text-decoration: transparent;
    margin-bottom: 1em;
}
.accordion .Label,
.accordion .open {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}
.accordion .open {		/*本文*/
	height: 0;
	margin-bottom:10px;
	overflow: hidden;
    background: rgba(0,0,0,0.2);
    padding: 0 10px; 

}
.accordion .toggle:checked + .Label + .open {	/*開閉時*/
	height: auto;
	transition: all .5s;
}
.accordion .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
    text-decoration: transparent;
}

