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


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;	
}
body {
	 font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;  
    
}

.en{
   font-family: "Josefin Sans", sans-serif;
}
.fullscreenmenu{
display: none;
}
	.h100{
height: 100px;		
	}
	.h50{
height: 50px;		
	}
	.h30{
height: 30px;		
	}	
	.h20{
height: 20px;		
	}
	.h10{
height: 10px;		
	}
.kome{
    color: #2034A5;
}
a{
	text-decoration: none;	
}
li{
	list-style-type: none;
}

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

.headline{
font-size: 1.3rem;
text-align:left;  
position: relative;
padding: 1rem 1rem 1rem 2rem;   
border: solid 1px #eee; 
background: #fff;    
}
.headline::after{
  content: "";
position: absolute;
top: 50%;
left: 10px;
width: 10px;
height: 70%;
background: #7BC242;    
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);    
}
.koumoku{
width: 100%;
position: relative;
padding-left: 1.5rem; 
display: block;      
}
.koumoku::after
  {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  position: absolute;
  color: #2034A5;
  font-weight: 900;
  left:0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.text-shadow {
text-shadow: #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;  
    }
.text1{
font-size: 1em;  
line-height: 200%;  
}
.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;
position: relative;
}
.background1::after{
content: "";    
position: absolute;
top: 0;
right: 0;    
width: 70%;
height: 100%; 
background: rgba(32,52,165,0.05);
z-index: -3;    
}
.background2{
width: 100%;
display: block;
position: relative;
}
.background2::after{
content: "";    
position: absolute;
bottom: 0;
right: 0;    
width: 100%;
height: 50%; 
background: rgba(32,52,165,0.05);
z-index: -3;    
}
.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:center;    
}
.flex-box3{
width: 100%;
height: auto;
display: flex;    
flex-wrap:wrap;
justify-content:flex-start;    
}

/*TOPスライダー*/
.slider-box{
    width: 100%;
    height:calc(100vh - 85px); 
	overflow: hidden;
	position: relative;
}

.text_img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  max-width:700px;
  width: 70%;    
  text-align: center;
 z-index: 5;    
}
.text_img img{
width: 100%;    
}
.loading_text{
	position: absolute;
    text-align: center;
	z-index: 3;
}
.loading_text p{
	font-size: 10vh;
    line-height: 1.4;
    letter-spacing: 0.05em;
    transform: translateY(-10%);
    font-family: "halogen", sans-serif;
	font-weight: 700;
 background: linear-gradient(180deg, #aeaeae, #aeaeae 30%, #dcdcdc);
  background: -webkit-linear-gradient(0deg, #aeaeae, #aeaeae 30%, #dcdcdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loading_text1{
    left: 0;
    bottom: 8%;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
	animation: text_apper1 1.6s ease-in-out;
    
}
.loading_text1 p{
    font-size: 9vh;
}
.loading_text2{
    left: 2%;
    bottom: 0;
	animation: text_apper2 1.6s ease-in-out forwards;
	animation-delay: 0.4s;
	opacity: 0;
}
.loading_text2 p{
    font-size: 5vh;
}
@keyframes text_apper1{
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
		transform: translateY(-10%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes text_apper2{
	0% {
		opacity: 0;
        transform: translateX(-10%);
	}
	50%{
		opacity: 0;
		
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


.overwrap{
	overflow: hidden;
}

.ani_text{
}
.ani_text{
	display: block;
	opacity: 0;
	transform: translate(10px,10px);
	transition: transform 1s cubic-bezier(.42,0,.58,1), opacity 1s cubic-bezier(.42,0,.58,1);
}
.ani_text.inview{
	opacity: 1;
	transform: translate(0,0);
}
.ani_text:nth-of-type(1){
	transition-delay:.2s;
}
.ani_text:nth-of-type(2){
	transition-delay:.4s;
}
.ani_text:nth-of-type(3){
	transition-delay:.6s;
}
.ani_text:nth-of-type(4){
	transition-delay:.8s;
}
.ani_text:nth-of-type(5){
	transition-delay:1s;
}
.ani_text:nth-of-type(6){
	transition-delay:1.2s;
}
.ani_text:nth-of-type(7){
	transition-delay:1.4s;
}
.ani_text:nth-of-type(8){
	transition-delay:1.6s;
}
.ani_text:nth-of-type(9){
	transition-delay:1.8s;
}
.ani_text:nth-of-type(10){
	transition-delay:2s;
}
.ani_text:nth-of-type(11){
	transition-delay:2.2s;
}
.ani_text:nth-of-type(12){
	transition-delay:2.4s;
}
.ani_text:nth-of-type(13){
	transition-delay:2.6s;
}
.ani_text:nth-of-type(14){
	transition-delay:2.8s;
}
.ani_text:nth-of-type(15){
	transition-delay:3s;
}
@media (max-width: 750px){
	.ani_text{
		transition-delay: 0s !important;
	}
}



/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 1.2s, transform 1.2s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flowup2{
	opacity: 0;
	transform: translate(-10%, 10%);
	transition: opacity 1.6s, transform 1.6s;
}
.flowup2.inview{
	opacity: 1;
	transform: translate(0, 0);
}
.flowup3{
	opacity: 0;
	transform: translate(0, 10%);
	transition: opacity 1.6s, transform 1.6s;
	transition-delay: 0.2s;
}
.flowup3.inview{
	opacity: 1;
	transform: translate(0, 0);
}
.flowup4{
	opacity: 0;
	transform: translate(10%, 10%);
	transition: opacity 1.6s, transform 1.6s;
	transition-delay: 0.4s;
}
.flowup4.inview{
	opacity: 1;
	transform: translate(0, 0);
}
@media (max-width: 960px){
	.flowup2{
		transition-delay: 0s !important;
	}
	.flowup3{
		transition-delay: 0s !important;
	}
	.flowup4{
		transition-delay: 0s !important;
	}
}

.grayscale{
	transition: 0.2s;
	transition-delay: 0.6s;
}
.grayscale.inview{
	filter: grayscale(100%);
}



/*パンクズ */
.breadcrumb {
position: absolute;
bottom: 3%;
left: 5%; 
z-index: 20;    
}

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

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2rem;
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;
}

/*スクロールダウン全体の場所*/
.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;
}
.midashi_l{
width: 100%;
position: relative;
z-index: 5; 
margin-top: 8%;    
}
.midashi_l h2{
width: 100%;     
font-size: 2rem;		
text-align:left;	   
color: #2034A5; 
position: relative;  
line-height: 1;    
}
.midashi_l h2::after{
content: attr(data-title);    
position: absolute;
top: 70%;
left: 0;
color:#afbbfa;    
font-size: 6rem;   
line-height: 1;
font-family: "Josefin Sans", sans-serif;   
z-index: -1;   
opacity: 0.6; 
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);     
}
.midashi_c{
width: 100%;
position: relative;
z-index: 5;    
margin-top: 8%;         
}
.midashi_c h2{
width: 100%;     
font-size: 2rem;		
text-align:center;	   
color: #2034A5; 
position: relative;  
line-height: 1;    
}
.midashi_c h2::after{
content: attr(data-title);    
position: absolute;
top: 70%;
left: 50%;
color: #afbbfa;  
font-size: 6rem;   
line-height: 1;
font-family: "Josefin Sans", sans-serif; 
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);  
z-index: -1;  
opacity: 0.6;  
width: 98%;      
}
.midashi_cw{
width: 100%;
position: relative;
z-index: 5; 
margin-top: 8%;      
}
.midashi_cw h2{
width: 100%;     
font-size: 2rem;		
text-align:center;	   
color: #fff; 
position: relative;   
line-height: 1;    
}
.midashi_cw h2::after{
content: attr(data-title);    
position: absolute;
top: 70%;
left: 50%;
color: #afbbfa;      
font-size: 6rem;   
line-height: 1;
font-family: "Josefin Sans", sans-serif; 
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);  
z-index: -1;  
opacity: 0.6;      
}
.container {
max-width: 1400px;    
width: 95%;
display: block;
margin: 0 auto;
}

header{
position: sticky;
width: 100%;
top: 0;
left: 0;
background: #fff;    
z-index:50;    
}

.inner-box{
max-width: 950px;    
width: 95%;
display: block;
margin: 0 auto;   
}

.top_menu{
width: 100%;
height: auto;
display: inline-block;
}

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

.top_menu .menu_t .logo{
width:400px;
transition: all 0.5s;    
}

.top_menu .menu_t .logo img{
width:90%;	
display: block;
margin-left: 20px;
}


.top_menu .m1{
width: 800px;	
display: flex;    
justify-content:flex-end;    
align-items: center;    
}

.top_wrapper{
width: 100%; 
height: 85px;    
}
.top_wrapper.transform{
  background: #fff;  
border-bottom: 1px solid #eee;
}

/*==ナビゲーション全体の設定*/
.m1 nav{
  color: #5070b0;
  text-align: center;
}
/*ナビゲーションを横並びに*/
.m1 nav ul{
  list-style: none;
  display: flex;
  justify-content:flex-end;
}
.m1 nav ul .small{
display: block;
font-size: 0.8rem;
font-family: "Josefin Sans", sans-serif;
color: #2034A5;  
}
.m1 nav ul li{
  position: relative;
margin-right: 30px;    
white-space:nowrap; 
line-height: 1.3rem;    
}

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

.m1 nav ul li a:hover{
opacity: 0.8;    
text-decoration: transparent;    
}


.t-con{
width: 250px;
display: flex;    
flex-wrap:wrap;
justify-content:flex-end;
align-items:center; 
transition: all 1s;     
}

.t-btn1{
width: 250px;	
height: 85px;    
font-size:1.5rem;	   
transition: all 3s;    
display: block;  
text-align: center; 
color: #fff; 
font-family: "Josefin Sans", sans-serif;     
font-weight: 700; 
position: relative;
line-height: 85px;       
background: linear-gradient(45deg, #7BC242, #2034A5);
}
.t-btn1:hover{
opacity: 0.7;    
}


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

.button {
  position: relative;
  max-width: 200px; /* ボタンの幅 */
    width:55%;
  color: #7BC242; /* 文字色 */
 border: 1px solid #7BC242;
  transition: all 0.5s;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 1rem 2rem;
    margin: 0 auto;   
font-size: 0.9em;   
border-radius: 50px; 
overflow: hidden; 
line-height: 1rem;
font-weight: 600;
z-index: 3;    
}

/* マウスオーバーした際のデザイン */
.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height:100%;
  transition: all 0.5s;
  background: linear-gradient(45deg, #7BC242, #2034A5);
  opacity: 0;
  z-index: 1;    
}
.button:hover {
      color: #fff;
}
.button:hover::after {
  opacity: 1;
  width: 100%;  
   z-index: -1; 
}
/*====ご挨拶===*/
.greeting-box{
width: 100%;
min-height: 900px;    
position: relative;
overflow: hidden;    
}
.greeting-box::after{
width: 70%;
height:70%;
object-fit: cover;    
content: "";
background: url("../img/greeting1.jpg");    
background-size: 100%;
background-repeat: no-repeat;    
position: absolute;
top: 0;
left: 0; 
  -webkit-mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 60%);
    mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 60%);  
z-index: -3; 
opacity: 0.9;    
}
.greeting-text{
font-size: 2rem;
padding-left: 1rem;    
position: relative;
z-index: 5;    
}

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


.item-box{
width: 100%;
height: auto;
display: block; 
position: relative;
overflow: hidden;
}
.item-t1{
width: 50%; 
position: relative;
z-index: 2;   
padding: 0 3%;    
}
.item-t1 p{
line-height: 2.5;    
}
.item-p1{
width: 50%;  
}
.item-p1 img{ 
width: 100%; 
height: 100%;
object-fit: cover;
display: block;
border-radius: 30px;
}
.item-t2{
width: 50%;   
padding: 0 3%;    
}
.item-t2 p{
line-height: 2.5;    
}
.item-p2{
width: 50%;  
}
.item-p2 img{ 
width: 100%; 
height: 100%;
object-fit: cover;
display: block;
border-radius: 30px;
}
.item-t3{
width: 60%;   
padding: 0 3%;    
}

.item-p3{
width:40%;  
}
.item-p3 img{ 
width: 80%; 
height: 80%;
object-fit: cover;
display: block;
transition: all 0.5s;    
}
.item-p3 a:hover img{
opacity: 0.8;    
}
/*====事業紹介==*/

.service-box1{
    width:100%; 
    display: flex;
     position: relative; 
    flex-wrap:wrap;
    justify-content: flex-start;
}

.service-flex{
 width: calc(100% / 2 - 20px);       
border-left: solid #fafafa 1px;
margin: 10px;   
border-radius: 30px;    
}
.s-box_icn{
width: 150px;
margin: 20px auto;
display: block;    
}
 .service1{    
display: block;     
 position: relative; 
background: #7BC242;
 transition: all 0.5s;  
}

.service1::after{
content: "";    
 background: url("../img/service1.jpg"); /* 表示する画像 */
  background-size: cover; 
  background-repeat: no-repeat;
  background-position:top left;  
text-decoration: transparent;    
  width: 100%;
  height: 100%;   
 object-fit:cover;  
opacity: 0.2;   
position: absolute;
top: 0;
left: 0;  
transition: all 0.5s;    
border-radius: 30px;     
}



 .service2{    
display: block;     
 position: relative; 
background: #7BC242;
 transition: all 0.5s;      
}

.service-box1 .service2::after{
content: "";      
  background: url("../img/service2.jpg"); /* 表示する画像 */
  background-size: cover; 
  background-repeat: no-repeat;
  background-position:top left;  
text-decoration: transparent;    
  width: 100%;
  height: 100%;   
 object-fit:cover;   
opacity: 0.2;   
position: absolute;
top: 0;
left: 0;  
transition: all 0.5s;  
border-radius: 30px;     
}


.service-box1 .s-box{
width:100%; 
min-height: 650px;
position: relative;
display: block;  
transition: all 5s;	 
padding: 3%;    
}


.service-box1 .s-box:hover .service-text{
z-index: 7;   
width: 100%;
height: 100%;
object-fit:cover;
display: block;  
color: #fff;  
text-decoration: transparent;      
}
.service-box1 .s-box .service-text .s-text{   
font-size: 1rem;   
display: block;  
transition: all 0.1s;	 
line-height: 2;  
width: 94%;  
letter-spacing: 0.1rem;   
margin: 0 auto;
}

.service-text{
font-size: 2rem;
position: absolute;
top: 0;
left: 0;       
color: #fff;   
line-height: 1.5; 
padding: 1rem; 
font-weight: 500;
z-index: 7;
width: 100%;
height: 100%;
object-fit:cover;
display: block;    
}
.service-text .number{
display: block;
font-size: 2rem; 
font-family: "Josefin Sans", sans-serif; 
}
/*====全ページ共通フッターメニュー===*/
footer{
width: 100%;
display:block;
text-align: center;	   
}
footer .footer-box{
height:auto; 
width: 100%;    
display: block;   
}
footer .footer-box .footer-back{
padding: 100px 0;     
width: 100%; 
background:url("../img/footer_back.webp");
background-position: center;
background-size: cover;
background-attachment: fixed;    
display: block;  
position: relative;
}

footer .footer-box .footer-back::after{
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    object-fit: cover;
    z-index: 1;
}
.con{
width: 100%;
position: relative;
z-index: 10;  
}
.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%;
}
.f-address img{
width: 300px;
display: block;
margin: 0 auto;
}
.f-con{
width:300px;
margin: 1em;    
}
.f-con a{
border:1px solid #fff;
padding:1em 1%;
font-size: 1.3em;  
display: block;  
color: #fff;
transition: all 1s;    
letter-spacing: 1px;   
border-radius: 50px;  
}
.f-con a:hover{
background: rgba(255,255,255,0.1); 
text-decoration: transparent;    
}
.f-con p{
border:1px solid #fff;
padding:1em 1%;
color: #fff;
font-size: 1.3em;      
letter-spacing: 1px; 
border-radius: 50px;     
}

.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:#2034A5;  
font-size: 0.8rem;  
}

/*========= 事業紹介 ===============*/

.service2_titl1{
font-size: 1.5rem;
color: #2034A5; 
line-height: 1.9; 
position: relative;
margin-bottom: 1rem;    
}
.service2_titl1::after{
content: "";    
 width: 100%;
display: block;
position: absolute;
background: #1668C7;
bottom: -5px;
left: 0;
height: 1px; 
}
.service2_titl1 span{
color: #7BC242; 
font-size: 1rem;
display: block;
}

.service2_l{
width:100%;
max-height: 980px;
min-height: 650px;    
position: relative;
padding: 60px 0;     
}
.service2_l img{
width: 60%;   
height: 100%;
object-fit: cover;
display: block;   
border-radius: 10px; 
position: absolute;
top: 0;
left: 0;    
}
.service2_l .service2{
width: 60%; 
box-shadow: 2px 2px 5px #eee;        
background: #fff;
position: absolute;
top: 50%;
right: 0;  
    max-width: 770px;
    padding: 56px;
    margin-left: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
border-radius: 10px; 
-webkit-transform : translateY(-50%);
transform : translateY(-50%);        
}
.service2_l .service2::after{
content: attr(data-label);    
position: absolute;
top: 50px;
right: 3px;
color: rgba(22,104,199,0.05);    
font-size: 20vh;   
   font-family: "Josefin Sans", sans-serif;
  font-weight: 400;   
    line-height: 1;
     z-index: -1;

}
.service2_r{
width:100%;
max-height: 900px;
min-height: 600px;         
position: relative;
padding: 60px 0;     
}
.service2_r img{
width: 60%;   
height: 100%;
object-fit: cover;
display: block;  
border-radius: 10px;   
position: absolute;
top: 0;
right: 0;       
}
.service2_r .service2{
width: 60%; 
box-shadow: 2px 2px 5px #eee;        
background: #fff;
position: absolute;
border-radius: 10px;    
top: 50%;
left: 0;  
max-width: 770px;
padding: 56px;
margin-right: auto;
background-color: #fff;
-webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);     
-webkit-transform : translateY(-50%);
transform : translateY(-50%);         
}
.service2_r .service2::after{
content: attr(data-label);    
position: absolute;
top: 50px;
right: 3px;
color: rgba(22,104,199,0.1);   
font-size: 20vh;   
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;   
    line-height: 1;
    z-index: -1;
}
/*========= 会社案内 ===============*/
.table{
width: 100%;    
}
.table table{
width: 100%;  
}
.table table th{
width: 30%;  
font-weight: 400;
position: relative;
background: linear-gradient(45deg, #2e48db, #2034A5);
padding: 1rem;  
color: #fff;    
}
.table table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #2034A5;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.table table td{
width: 70%;  
background: #eee; 
padding: 1rem;    
}
.table table td .mb{
display: block;
margin-bottom: 1rem;    
}
.table table td iframe{
width: 100%;
height: 200px;    
}
.ios_box{

}
.ios-table table{
width: 100%;   
border-spacing: 0;    
}
.ios-table table tr{
width: 100%;   
}
.ios-table table th{
width: 30%;
border-bottom: solid 1px #333;    
padding:1rem 1%;  
font-weight: 500;
color: #2034A5;    
}
.ios-table table td{
width: 70%; 
border-bottom: solid 1px #333;    
padding:1rem 1%;     
}
.ios_box img{
max-width: 800px;
width: 80%;
display: block;
margin: 3% auto;
border-radius: 30px;    
}
.ios{
 width:calc(100% / 2 - 20px);  
margin: 10px;   
border-radius: 10px;
background: #7BC242;    
padding: 2%;    
}
.ios p{
color: #fff; 
font-weight: 600;
}
.ios strong{
text-align: center;   
}
.history{
width: 100%;
display: flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;   
text-align: center;   
margin: 0.5rem 0;    
}
.history .year{
width: 15%;
font-size: 0.9rem;   
color: #fff;  
font-weight: 700;
padding: 1% 0;   
background: #2034A5;   
border-radius: 3px;    
}
.history .h_text{
width: 85%;
font-size:0.9rem;   
font-weight: 700;  
padding: 1% 0;   
text-align: left;
position: relative;
padding-left: 5rem;   
}
.history .h_text::after{
  display: block;
  content: "・・・・・";
  position: absolute;
  top:50%;
 left: 0;
-webkit-transform : translateY(-50%);
transform : translateY(-50%);  
color: #7BC242;    
}

/*========= お問い合わせ ===============*/

.contact-box{
width: 100%;
height: auto;
display: block;  
background: #fff;
box-shadow: 2px 2px 10px #eee;    
padding: 3%;    
}

.c-tf{
max-width: 500px;
width: 100%;    
margin: 0;   
display: inline-block;
}
.c-box{
width: 100%; 
padding-left: 1rem;    
}

.c-box a{
width: 100%;     
font-size: 2.5rem;
transition: all 0.5s;	 
display: block;       
text-align:left;
color: #2134A3;     
transition: all 0.5s;	    
}
.c-tf:hover a{
opacity: 0.7;  
}

.c-box .tel_time{
font-size:1rem; 
display: block;  
color: #333; 
text-align:left;  
font-weight: 600;
}
.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%;	
}


form{
	width: 100%;
	text-align: center;
}
.checkbox_text{
line-height: 1.75;
color: #595757;	
}
.mailform{
width: 100%;   
}
.mailform table{
width: 100%;    
 
}
.fm-text .text1 .text_b{
	color:#7BC242;
    font-size:1rem;
    padding:0.5em;
    margin-right: 5px;
    text-align: center;
    font-weight: 500;
}
.mailform table .text_b{
	color:#7BC242;
	font-size:1rem;
	padding:0.5em;
    margin-right: 5px;
    text-align: center;
    font-weight: 400;
}


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

.mailform table td{
font-size: 1rem;
padding: 2% 1%;
width: 70%; 
border-bottom: 1px dotted #555;   
text-align: left;
}

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

.single p{
	text-align: center;
	color:#333;
}
.fm-text p{
text-align: left;
}
.postcord_btn{
border:1px solid #333; 
padding: 1%;
font-size: 0.9rem;    
background: #333;
color: #fff;   
margin-left: 1rem;
}
.form-button
{
margin: 5% 0;
text-align: center;
}

.form-button button {
    cursor: pointer;
    display: block;
    margin: 0 auto 5px;
    padding: 1rem;
    color: #fff;
    text-align: center;
    width: 250px;
	transition: all 0.5s;	
    border:3px solid #2134A3; 
    font-weight: 700;
    background:#2134A3;
}
.form-button button:hover{
    color:#fff;
    background: #2134A3;
    border:3px solid #fff; 
	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%; 
}
input[type="text"]{
	height: 40px!important;
	font-size: 1em;
	padding: 10px;
background: #eee;
   border-color: light-dark(rgba(118, 118, 118,0), rgba(133, 133, 133,0));        
}
input[type="email"]{
    width: 100%;
	height: 40px;
	font-size: 1em;
	padding: 10px; 
}

textarea{
padding: 10px;	
font-size: 1em;		
background: #eee;
border-color: light-dark(rgba(118, 118, 118,0), rgba(133, 133, 133,0));    
}
.mailform .accordion h4{
font-size: 1rem;
text-align: left;
padding-bottom: 3px;	
letter-spacing: 2px;
border-bottom: 1px dotted #999;
padding-left: 1%; 
font-weight: 500;
color: #333;    
}
.mailform .accordion p{
font-size:1rem;
text-align: left;
letter-spacing: 2px;
padding: 1% 0;	
padding-left: 1%; 
color: #333;      
}
.mailform .accordion {
}
.mailform .toggle {
	display: none;
}
label{
cursor: pointer; 
display: inline-block; 
white-space:nowrap;
margin-right: 20px;    
}
.Label {
    font-size: 1rem;
	padding:1%;
	display: block;
    color: #333;
    position: relative;
    margin-right: 0; 
    border-bottom: solid 1px #333;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
    text-decoration: transparent;
    margin-bottom: 1rem;
}
.Label,
.open1 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}
.open1 {		/*本文*/
	height: 0;
	margin-bottom:10px;
	overflow: hidden;
    padding: 0 10px; 

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




.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg15{
	margin-bottom: 15px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg5{
	margin-bottom: 5px !important;
}
.mg0{
	margin-bottom: 0 !important;
}
.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

.img img{
  display: block;
  width: 100%;
}

.img.round img{
  border-radius: 20px;
}


.wrapper240719{

}
.wrapper240719 .w_bp{
  margin-bottom: 60px;
}
.wrapper240719 .w_bp:last-child{
  margin-bottom: 0 !important;
}


.feature_container{
}
.feature_container .box{
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ddd;
}
.feature_container .box:last-child{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.feature_container .box .flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature_container .box .flex .img{
  width: 60%;
}
.feature_container .box .flex .sentence{
  width: 40%;
}
.feature_container .box .flex .sentence h4 span.en{
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 960px){
  .feature_container .box .flex{
    flex-direction: column;
  }
  .feature_container .box.reverse .flex{
    flex-direction: column-reverse;
  }
  .feature_container .box .flex .img{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .feature_container .box .flex .sentence{
    width: 96%;
    margin: 0 auto;
  }
}



.mtitle{
	position: relative;
    font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	background-color: #fff;
	border: 2px solid #2034A5;
    padding: 18px 18px;
	padding-left: 36px;
	color: #2034A5;
    margin-bottom: 25px;
	border-radius: 20px;
	box-shadow: 4px 4px rgba(32, 52, 165, 0.4);
}
.mtitle::before{
	content: '';
	display: block;
	width: 4px;
	height: 25px;
	background-color: #2034A5;
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}


.info_flexbox{
	display: flex;
	justify-content: space-between;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .sentence{
	width: 48%;
}
.f_center{
	align-items: center;
}
@media (max-width: 750px){
	.info_flexbox{
		flex-direction: column;
	}
	.info_flexbox.reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .sentence{
		width: 100%;
	}
}



.recruit_details{
  position: relative;
  z-index: 1;
}
/*.recruit_details::after{
  content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
}*/
.recruit_details .secret_text{
  /*position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  z-index: 11;*/
  background-color: rgba(255, 255, 255, 1);
  width: 96%;
  max-width: 600px;
  text-align: center;
  padding: 30px 5px;
  margin: 0 auto;
  box-shadow: rgba(149, 157, 165, 0.12) 0px 8px 24px;
}
.recruit_details .secret_text p.sub{
}
.recruit_details .secret_text p.sub a{
  color: #2034A5;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.recruit_details .secret_text p.sub a:hover{
  opacity: 0.6;
}


span.ib{
  display: inline-block;
}

.pc_center{
	text-align: center;
}
@media (max-width: 750px){
	.pc_center{
		text-align: left;
	}
}




.thanks .thanks_txt{
  text-align: center;
}
.thanks .button{
  display: block;
  margin: 0 auto;
}
.thanks .thanks_txt2{
  font-size: 0.8rem;
}
.about_titl{
  font-size:2rem;
  text-align: center;
}