/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
a{
	transition: ease all .4s;
}
a:hover{
	opacity: .7;
}
/*=====================================
*
*header
*
=======================================*/
header{

}
header .header_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1540px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 99;
}
header .header_inner .header_menu .Gmenu{
  display: flex;
  justify-content: flex-end;
}
header .header_inner .header_menu .Gmenu li{
  margin-right: 50px;
}
header .header_inner .header_menu .Gmenu li:last-child{
  margin-right: 0;
}
header .header_inner .header_menu .Gmenu li a{
  color: #333;
  font-weight: 500;
}
header .header_inner .header_menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 500px;
  padding: 15px 45px;
  box-shadow: 0 0 7px 0px #00000038;
  transition: ease all .4s;
}
header .header_inner .header_menu .header_menu_cta{
  display: flex;
  justify-content: flex-end;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}
header .header_inner .header_menu .header_menu_cta a{
  font-size: 16px;
  color: #01b400;
}
header .header_inner .header_menu .header_menu_cta .contact{
  margin-right: 40px;
}
header .header_inner .header_menu .tel .text{
  width: 100%;
}
header .header_inner .header_menu .tel .tel_inner{
  display: flex;
  justify-content: space-between;
}
header .header_inner .header_menu .tel .tel_inner a:first-child{
  margin-right: 25px;
}
@media screen and (max-width:1024px){
  header .header_inner .header_menu {
    padding: 15px 20px;
  }
  header .header_inner .header_menu .Gmenu li{
    margin-right: 10px;
  }
  header .header_inner .header_menu .Gmenu li a{
    font-size: 14px;
  }
  header .header_inner .header_menu .header_menu_cta .contact{
    margin-right: 20px;
  }
  header .header_inner .header_menu .tel .tel_inner a:first-child{
    margin-right: 15px;
  }
}
@media screen and (max-width:768px){
	header .header_inner{
		top: 10px;
	}
  header .spbtn{
    position: fixed;
    right: 20px;
    top: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 7px 0px #0000001c;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 10px;
  }
  header .spbtn span{
    display: block;
    width: 70%;
    height: 3px;
    background: #333;
    margin: 0 auto;
    position: relative;
    top:0;
    transition: ease all .4s;
  }
  header .spbtn.active span:nth-child(1){
    transform: rotate(-45deg);
    top: 10px;
  }
  header .spbtn.active span:nth-child(2){
    transform: rotate(45deg);
  }
  header .spbtn.active span:nth-child(3){
    opacity: 0;
    pointer-events: none;
  }
  header .header_inner .header_menu{
    padding: 15px 20px;
    position: fixed;
    right: 0;
    top: -20px;
    width: 80%;
    height: 100vh;
    border-radius: 0;
    display: block;
    transform: translateX(100%);
    opacity: 0;
    padding-top: 90px;
    z-index: 99;
  }
  header .header_inner .header_menu.active{
    transform: translateX(0);
    opacity: 1;
  }
  header .header_inner .header_menu .Gmenu{
    display: block;
  }
  header .header_inner .header_menu .Gmenu li a{
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 10px;
  }
  header .header_inner .header_menu .header_menu_cta{
    display: block;
  }
  header .header_inner .header_menu .header_menu_cta .contact{
    margin: 20px auto;
  }
  .modal_bg{
    background: #000;
    position: fixed;
    left: 0;
    top: -20px;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: ease all .4s;
  }
  .modal_bg.active{
    opacity: .4;
    pointer-events: all;
  }
}
/*=====================================
*
*front
*
=======================================*/
.front_title{
  display: flex;
  flex-flow: column-reverse;
}
.front_title.center{
  text-align: center;
}
.front_title h2{
  font-size: 22px;
  font-weight: bold;
  width: 100%;
}
.front_title h2 span{
  position: relative;
  display: inline-block;
}
.front_title h2 span::before{
  content: '';
  display: block;
  width: 150px;
  height: 1px;
  position: absolute;
  right: -20px;
  top: calc( 50% - 0.5px );
  transform: translate(100%, -50%);
  background: #88d26e;
}
.front_title .en{
  color: #63bd63;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  width: 100%;
}
.front_btn{
  margin: 40px auto;
  max-width: 200px;
  width: 100%;
}
.front_btn a{
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  display: block;
  background: #f76b20;
  width: 100%;
  border-radius: 500px;
  color: #fff;
  padding: 15px;
  line-height: 1;
}

/*=====================================
*mv
=======================================*/
.mv{
  background: url(../images/mv_bg.jpg)no-repeat left top;
  position: relative;
  height: 60vh;
  margin-bottom: 30vh;
}
.mv .mv_inner{
  position: relative;
  right: 0;
  top: 120px;
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
}
.mv .mv_inner .text{
  position: absolute;
  left: 50%;
  max-width: 1540px;
  width: 100%;
  padding: 0 20px;
  transform: translateX(-50%);
  height: 100%;
  padding-top: 100px;
}
.mv .mv_inner .text .text_inner{
  
}
.mv .mv_inner .text .text_inner .main{
  font-weight: bold;
  font-size: 50px;
}
.mv .mv_inner .text .text_inner .en{
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 22px;
  color: #63bd63;
  letter-spacing: 1px;
  margin-top: 10px;
}
@media screen and (max-width:1024px){
  .mv{
    height: 40vh;
    margin-bottom: 120px;
  }
  .mv .mv_inner .image{
    width: 70%;
  }
  .mv .mv_inner .text{
    padding-top: 40px;
  }
  .mv .mv_inner .text .text_inner .main{
    font-size: 35px;
  }
  .mv .mv_inner .text .text_inner .en{
    font-size: 18px;
  }
}
@media screen and (max-width:768px){
  .mv .mv_inner{
    top: 100px;
  }
  .mv .mv_inner .text .text_inner .main {
    font-size: 20px;
  }
  .mv .mv_inner .text .text_inner .en {
    font-size: 14px;
  }
}


/*=====================================
*section1
=======================================*/
.sec1{
  
}
.sec1 .message{
  position: relative;
  padding: 40px;
}
.sec1 .message::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -10px;
  top: -10px;
  border: 1px solid #a8a8a8;
  pointer-events: none;
}
.sec1 .message::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 10px;
  top: 10px;
  border: 1px solid #a8a8a8;
  pointer-events: none;
}
.sec1 .message .text{
  margin: 40px auto;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width:1260px){
  .sec1{
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  .sec1 .message{
    padding: 40px 20px;
  }
  .sec1 .message .text{
    font-size: 14px;
    padding: 0 10px;
  }
}

/*=====================================
*section2
=======================================*/
.sec2{
  margin: 120px 0;
}
.sec2 .reason{

}
.sec2 .reason .reason_inner{
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #63bd6360;
  position: relative;
}
.sec2 .reason .reason_inner .title{
  padding: 30px;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sec2 .reason .reason_inner .title .title_num{
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  background: #63bd63;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-right: 25px;
}
.sec2 .reason .reason_inner .title h3{
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  position: relative;
  line-height: 1.2;
  z-index: 2;
}
.sec2 .reason .reason_inner .title h3::before{
  content: '';
  display: block;
  background: #88d26e;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  z-index: -1;
}
.sec2 .reason .reason_inner .text{
  padding: 30px;
  position: relative;
  line-height: 1.8;
}
.sec2 .reason .reason_inner .text .text_num{
  color: #63bd63;
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: "Montserrat";
  opacity: .5;
  line-height: 1;
}
@media screen and (max-width:1260px){
  .sec2{
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  .sec2 .reason .reason_inner .title{
    padding: 10px;
  }
  .sec2 .reason .reason_inner .title h3{
    font-size: 18px;
    width: calc( 100% - 50px);
  }
  .sec2 .reason .reason_inner .title .title_num{
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 20px;
  }
  .sec2 .reason .reason_inner .text{
    padding: 10px;
    padding-bottom: 30px;
    font-size: 14px;
  }
  .sec2 .reason .reason_inner .text .text_num{
    bottom: 10px;
  }
}

/*=====================================
*section3
=======================================*/
.sec3{
  background: #e8ffe8;
  padding: 80px 0 40px;
  position: relative;
}
.sec3 .works_front{
  margin: 50px auto;
}
.sec3 .works_front ol{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec3 .works_front ol li{
  width: calc( 100% / 3);
}
.sec3 .works_front ol li a{
  position: relative;
  transition: ease all .4s;
}
.sec3 .works_front ol li a .image{
  position: relative;
  background: #a8a8a8;
  transition: ease all .4s;
}
.sec3 .works_front ol li a:hover .image{
  background: #111;
}
.sec3 .works_front ol li a .image img{
  opacity: .84;
  transition: ease all .4s;
}
.sec3 .works_front ol li a:hover .image img{
  opacity: .6;
}
.sec3 .works_front ol li a .text{
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1;
  padding: 15px 5px;
  width: 180px;
  background: #63bd63;
  border-radius: 20px 0 0 0;
  color: #fff;
  text-align: center;
}
.sec3 .works_front ol li a .text span{
  position: relative;
}
.sec3 .works_front ol li a .text span::after{
  content:'\f0da';
  font: var(--fa-font-solid);
  color: #fff;
  margin-left: 8px;
}
.sec3 .front_btn{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,50%);
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width:1260px){
  .sec3{
    padding: 60px 20px 40px;
  }
}
@media screen and (max-width:768px){
  .sec3 .works_front ol li{
    width: 50%;
  }
  .sec3 .works_front ol li a .text{
    font-size: 12px;
    width: 85%;
  }
}

/*=====================================
*section4
=======================================*/
.sec4{
  margin: 120px 0;
}
.sec4 .case_list{
  margin: 60px auto;
}
.sec4 .case_list ol{

}
.sec4 .case_list ol li{

}
.sec4 .case_list ol li a .image{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 215px;
}
.sec4 .case_list ol li a .image img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: auto;
  min-width: 100%;
  min-height: 100%;
}
.sec4 .case_list ol li a .image .date{
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
  font-family: "Montserrat";
}
.sec4 .case_list ol li a .title{
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
@media screen and (max-width:1260px){
  .sec4 .front_title{
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  .sec4 .case_list ol li a .title{
    font-size: 14px;
  }
}

/*=====================================
*cta
=======================================*/
.cta{
  margin: 120px auto;
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
}
.cta .cta_wrapper{
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: url(../images/cta.jpg) center/cover no-repeat;
}
.cta .cta_inner{
  position: relative;
  text-align: center;
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 15px;
  color: #fff;
  font-weight: bold;
}
.cta .cta_inner .title{
  font-size: 30px;
}
.cta .cta_inner .text{
  margin: 20px auto 40px;
}
.cta .cta_inner .text span{
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.cta .cta_inner .btn ol{
  display: flex;
  justify-content: center;
  margin: 20px auto;
}
.cta .cta_inner .btn ol li{
  width: 100%;
  max-width: 250px;
  overflow: hidden;
}
.cta .cta_inner .btn ol li a{
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  line-height: 1;
  display: block;
  width: 100%;
  border-radius: 500px;
}
.cta .cta_inner .btn ol li.contact a{
  color: #fff;
  background: #01b400;
}
.cta .cta_inner .btn ol li.tel{
  margin: 0 30px;
}
.cta .cta_inner .btn ol li.tel a{
  color: #01b400;
  background: #fff;
  border: 1px solid #01b400;
}
.cta .cta_inner .btn ol li.tel02 a{
  background: #f76b20;
  color: #fff;
}
@media screen and (max-width:1024px){
  .cta .cta_inner .btn ol li a{
    font-size: 15px;
  }
}
@media screen and (max-width:768px){
  .cta .cta_inner .title {
    font-size: 20px;
  }
  .cta .cta_inner .btn ol{
    display: block;
  }
  .cta .cta_inner .btn ol li.tel{
    margin: 20px auto;
  }
}

/*=====================================
*section5
=======================================*/
.sec5{
  margin: 120px auto;
}
.sec5 .column{
  margin: 60px auto;
}
.sec5 .column ol{
  display: flex;
  justify-content: flex-start;
}
.sec5 .column ol li{
  width: calc(100% / 3 - 20px);
  margin-right: 30px;
  box-shadow: 0 0 8px 0 #00000040;
  border-radius: 10px;
  border: 1px solid #01b400;
  overflow: hidden;
}
.sec5 .column ol li:last-child{
  margin-right: 0;
}
.sec5 .column ol li a{
  background: #fff;
  position: relative;
  display: block;
}
.sec5 .column ol li a .image{
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sec5 .column ol li a .image img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  max-width: 200%;
}
.sec5 .column ol li a .text{
  padding: 15px;
}
.sec5 .column ol li a .text .date{
  font-size: 14px;
  font-weight: bold;
  color: #01b400;
}
.sec5 .column ol li a .text .title{
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width:1260px){
  .sec5{
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  .sec5 .column ol{
    display: block;
  }
  .sec5 .column ol li{
    width: 100%;
    margin: 20px auto;
  }
}

/*=====================================
*section6
=======================================*/
.sec6{
  margin: 80px auto;
}
.sec6 .news{
  margin: 60px auto;
}
.sec6 .news ol{

}
.sec6 .news ol li{

}
.sec6 .news ol li a{
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  padding: 20px;
  padding-right: 40px;
  color: #333;
  line-height: 1.5;
  position: relative;
}
.sec6 .news ol li a::before{
  content:'\f054';
  font: var(--fa-font-solid);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sec6 .news ol li:first-child a{
  border-top: 1px solid #e1e1e1;
}
.sec6 .news ol li a .date{
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 18px;
  margin-right: 20px;
  padding-left: 15px;
  border-left: 5px solid #01b400;
}
.sec6 .news ol li a .title{
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: -2px;
}
@media screen and (max-width:1260px){
  .sec6{
    padding: 0 20px;
  }
}
@media screen and (max-width:768px){
  .sec6 .news ol li a{
    display: block;
  }
  .sec6 .news ol li a::after{
    content: '';
    width: 5px;
    height: calc( 100% - 40px );
    background: #01b400;
    position: absolute;
    left: 5px;
    top: 20px;
  }
  .sec6 .news ol li a .date{
    border: none;
    padding-left: 0;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .sec6 .news ol li a .title{
    font-size: 16px;
    top: 0;
  }
}


/*=====================================
*
*single
*
=======================================*/
.single_header{
	height: 350px;
	position: relative;
	overflow: hidden;
}
.single_header img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.single_header.news img{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: inherit;
    height: 100%;
}
.single_header::after{
	content: '';
	background: #333;
	opacity: .45;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.single_header h1{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 40px;
	z-index: 2;
	width: 100%;
	text-align: center;
}
#single .page_pn{
	margin: 40px auto;
}
#single .page_pn ol{
	position: relative;
	background: none;
    border: none;
}
#single .page_pn ol li::before{
	content: none;
}
#single .page_pn ol li.prev{
	position: absolute;
	left: 0;
}
#single .page_pn ol li.prev a{
	color: #00b401;
	position: relative;
	padding-left: 20px;
}
#single .page_pn ol li.prev a::before {
    content: '\f104';
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#single .page_pn ol li.center{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
#single .page_pn ol li.center a{
	color: #00b401;
	border: 1px solid #00b401;
    padding: 10px 20px;
	border-radius: 500px;
}
#single .page_pn ol li.next{
	position: absolute;
	right: 0;
}
#single .page_pn ol li.next a{
	color: #00b401;
	position: relative;
	padding-right: 20px;
}
#single .page_pn ol li.next a::before {
    content: '\f054';
    font: var(--fa-font-solid);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#single .maincontents{
	max-width: 1300px;
	padding: 0 20px;
	margin: 80px auto;
}
#single .maincontents .contents h2{
	font-size: 24px;
    font-weight: bold;
    margin: 40px auto 20px;
    border-bottom: 1px solid #ccc;
    border-left: 8px solid #01b400;
    padding: 10px;
}
#single .maincontents .contents h3{
	font-size: 20px;
    font-weight: bold;
    margin: 40px auto 20px;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}
#single .maincontents .contents p{
	margin: 20px auto;
}
@media screen and (max-width:768px){
	#single .single_header{
		height: 236px;
	}
	#single .single_header h1 {
        font-size: 24px;
        padding: 0 20px;
    }
	#single .page_pn ol li.prev a{
		font-size: 12px;
		padding-left: 15px;
	}
	#single .page_pn ol li.prev a::before{
		top: calc(50% + 1px);
	}
	#single .page_pn ol li.next a{
		font-size: 12px;
		padding-right: 15px;
	}
	#single .page_pn ol li.next a::before{
		top: calc(50% + 1px);
	}
	#single .page_pn ol li.center a{
		color: #00b401;
		border: 1px solid #00b401;
		padding: 5px 15px;
		border-radius: 500px;
		font-size: 12px;
	}
	#single .maincontents .contents h2{
		font-size: 20px;
	}
	#single .maincontents .contents h3{
		font-size: 18px;
	}
}
/*=====================================
*case
=======================================*/
.case_contents{
	max-width: 1300px;
	padding: 0 20px;
	margin: 80px auto;
}
.case_contents .case_contents_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.case_contents .image{
	width: 48%;
}
.case_contents .image ol{
	background: none;
	border: none;
}
.case_contents .image ol li::before{
	content: none;
}
.case_contents .case_text{
	width: 50%;
}
.case_contents .case_text .case_text_inner{
	display: flex;
	justify-content: space-between;
}
.case_contents .case_text .case_text_inner .title{
	width: 40%;
	padding: 15px;
	border-bottom: 1px solid #00b401;
}
.case_contents .case_text .case_text_inner .text{
	width:60%;
	padding: 15px;
	border-bottom: 1px solid #eaeaea;
}
.case_contents .free_text{
	margin: 40px auto;
}
.case_contents .free_text h2{
	font-weight: bold;
	font-size: 20px;
	border-bottom: 1px solid #ccc;
	padding: 10px;
}
.case_contents .free_text p{
	margin: 20px auto;	
}
@media screen and (max-width:768px){
	.case_contents{
		margin: 40px auto;
	}
	.case_contents .case_contents_inner{
		display: block;
	}
	.case_contents .image{
		width: 100%;
	}
	.case_contents .case_text {
		width: 100%;
	}
	.case_contents .case_text .case_text_inner .title {
		width: 40%;
		padding: 15px 10px;
		font-size: 14px;
	}
	.case_contents .case_text .case_text_inner .text {
		width: 60%;
		padding: 15px 10px;
		font-size: 14px;
	}
}
/*=====================================
*
*page
*
=======================================*/
#page .page_header{
	height: 350px;
	position: relative;
	overflow: hidden;
}
#page .page_header img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	max-width: inherit;
    height: 100%;
}
#page .page_header::after{
	content: '';
	background: #333;
	opacity: .45;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#page .page_header h1{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 40px;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 0 20px;
}
@media screen and (max-width:768px){
	#page .page_header{
		height: 236px;
	}
	#page .page_header h1{
    font-size: 28px;
	}
}

/*=====================================
*business
=======================================*/
.business{
	width: 100%;
	max-width: 1300px;
	padding: 0 20px;
	margin: 0 auto;
	font-family:'ZenKakuGothicNew';
}
.business_flex {
	margin: 50px auto;
	position: relative;
}
.business_flex > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.business_flex.re > div{
	flex-flow: row-reverse;
}
.business_flex > div .image{
	width: 50%;
    max-width: 600px;
	position: relative;
}
.business_flex > div .image figure{
	position: relative;
}
.business_flex > div .image figure::before{
	content: '';
	background: #555;
	opacity: .35;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.business_flex > div .image .image_title{
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 15px 40px;
	text-align: center;
	border-radius: 15px 0 0 0;
	color: #fff;
	background: #63bd63;
	font-weight: bold;
	font-size: 26px;
	line-height: 1;
}
.business_flex > div .text{
	width: 50%;
    max-width: calc(100% - 620px);
	font-size: 18px;
    font-weight: 400;
    line-height: 2;
}
@media screen and (max-width:1260px){
	.business_flex > div .text{
		width: 49%;
		max-width: inherit;
		font-size: 16px;
	}
}
@media screen and (max-width:968px){
	.business_flex > div .text{
		font-size: 14px;
		line-height: 1.8;
	}
}
@media screen and (max-width:768px){
	.business_flex > div{
		display: block;
	}
	.business_flex > div .image{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.business_flex > div .image .image_title{
		font-size: 20px;
	}
	.business_flex > div .text{
		width: 100%;
	}
}
/*=====================================
*company
=======================================*/
.company{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.company .table{
	max-width: 900px;
	padding: 0 20px;
	margin: 80px auto;
}
.company .table .table_inner:nth-child(2n){
	background: #fafafa;
}
.company .table .table_inner > div{
	display: flex;
	justify-content: space-between;
}
.company .table .table_inner > div p:first-child{
	width: 35%;
	padding: 20px;
	font-size: 16px;
}
.company .table .table_inner > div p:last-child{
	width: 65%;
	padding: 20px;
	font-size: 14px;
}
@media screen and (max-width:768px){
	.company .table{
		margin: 40px auto;
	}
	.company .table .table_inner > div{
		display: block;
        padding: 15px 20px;
	}
	.company .table .table_inner > div p:first-child{
		margin-bottom: 5px;
		font-weight: 500;
		width: 100%;
		padding: 0;
	}
	.company .table .table_inner > div p:last-child{
		width: 100%;
		padding: 0;
	}
}

/*=====================================
*privacy
=======================================*/
.privacy{
	width: 100%;
	max-width: 1300px;
	padding: 0 20px;
	margin: 80px auto;
}
.privacy p {
	margin: 20px auto;
	line-height: 1.8;
}
.privacy h2{
	font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    line-height: 1;
    margin: 40px auto 20px;
}
.privacy ol{
	margin: 20px auto;
}
.privacy ol li{
	margin: 15px auto;
	position: relative;
	padding-left: 15px;
}
.privacy ol li::before{
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width:768px){
	.privacy{
		margin: 40px auto;
	}
	.privacy h2{
		font-size: 18px;
		padding: 10px;
	}
}
/*=====================================
*contact
=======================================*/
.contact_form{
	max-width: 900px;
    padding: 0 20px;
    margin: 80px auto;
}
.contact_form .contact_table{
	width: 100%;
}
.contact_form .contact_table .contact_table_inner{
	display: flex;
	border-bottom: 1px solid #eaeaea;
	justify-content: space-between;
}
.contact_form .contact_table .contact_table_inner .title {
    width: 35%;
    padding: 20px;
    font-size: 16px;
	font-weight: 500;
    padding-top: 25px;
    line-height: 1;
	position: relative;
}
.contact_form .contact_table .contact_table_inner .title .hissu{
	font-size: 12px;
    color: #f72020;
	position: absolute;
	right: 20px;
}
.contact_form .contact_table .contact_table_inner .text{
	width: 65%;
	padding: 20px;
	font-size: 14px;
}
.contact_form .contact_table .contact_table_inner .text input{
	display: block;
    width: 100%;
	font-size: 14px;
	color: #333;
    font-family: 'Noto Sans JP';
    border: 1px solid #aaa;
    padding: 5px;
}
.contact_form .contact_table .contact_table_inner .text .date_text{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact_form .contact_table .contact_table_inner .text .date_text input{
	width: 60%;
}
.contact_form .contact_table .contact_table_inner .text .date_text select{
	width: 38%;
	font-size: 14px;
	color: #333;
    font-family: 'Noto Sans JP';
    border: 1px solid #aaa;
    padding: 5px;
}
.contact_form .contact_table .contact_table_inner .text .reserve_date{
	margin-bottom: 10px;
}
.contact_form .submit{
	margin: 40px auto;
	text-align: center;
}
.contact_form .submit input[type="submit"]{
	font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    background: #f76b20;
    width: 100%;
    border-radius: 500px;
    color: #fff;
    padding: 20px;
    line-height: 1;
	border: none;
    max-width: 320px;
	transition: ease all .4s;
}
.contact_form .submit input[type="submit"]:hover{
	opacity: .7;
	cursor: pointer;
}
.thanks_text{
	text-align: center;
	margin: 40px auto;
}
@media screen and (max-width:768px){
	.contact_form .contact_table{
		margin: 40px auto;
	}
	.contact_form .contact_table .contact_table_inner{
		display: block;
        padding: 15px 20px;
	}
	.contact_form .contact_table .contact_table_inner .title{
		margin-bottom: 5px;
		font-weight: 500;
		width: 100%;
		padding: 0;
	}
	.contact_form .contact_table .contact_table_inner .text{
		width: 100%;
		padding: 0;
	}
}

/*=====================================
*
*archive
*
=======================================*/
.archive_header{
	height: 350px;
	position: relative;
	overflow: hidden;
}
.archive_header img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	max-width: inherit;
    height: 100%;
}
.archive_header::after{
	content: '';
	background: #333;
	opacity: .45;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.archive_header h1{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 40px;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 0 20px;
}
.looplist{
	margin: 80px auto;
	max-width: 1300px;
	padding: 0 20px;
}
.looplist ol{
	display: flex;
	flex-wrap: wrap;
}
.looplist ol li{
	width: calc(100% / 3 - 20px);
	margin: 30px 0;
	margin-right: 30px;
	box-shadow: 0 0 8px 0 #00000040;
	border-radius: 10px;
	border: 1px solid #01b400;
	overflow: hidden;
}
.looplist ol li:nth-child(3n){
  margin-right: 0;
}
.looplist ol li a{
  background: #fff;
  position: relative;
  display: block;
}
.looplist ol li a .image{
  position: relative;
  height: 200px;
  overflow: hidden;
}
.looplist ol li a .image img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  max-width: 200%;
}
.looplist ol li a .text{
  padding: 15px;
}
.looplist ol li a .text .date{
  font-size: 14px;
  font-weight: bold;
  color: #01b400;
}
.looplist ol li a .text .title{
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}
.pagination{
	margin: 40px auto;
}
.pagination ul{
	display: flex;
    justify-content: center;
}
.pagination ul li{
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.pagination ul li:last-child{
	margin-right: 0;
}
.pagination ul li span{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #63bd63;
	color: #fff;
	height: 100%;
}
.pagination ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	border: 1px solid #63bd63;
    color: #63bd63;
}
@media screen and (max-width:768px){
	.archive_header{
		height: 236px;
	}
	.archive_header h1{
    font-size: 28px;
	}
	.looplist ol{
		display: block;
	}
	.looplist ol li{
		width: 100%;
		margin: 20px auto;
	}
	.pagination ul li {
		width: 30px;
		height: 30px;
	}
  .sec5 .column ol{
    display: block;
  }
  .sec5 .column ol li{
    width: 100%;
    margin: 20px auto;
  }
}

/*=====================================
*
*breadcrumb
*
=======================================*/

/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
footer{
  margin-top: 80px;
  background: #f1fff1;
}
footer .footer_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  padding: 40px 20px;
  margin: 0 auto;
}
footer .footer_inner .left{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer_inner .left .logo{
  margin-right: 20px;
}
footer .footer_inner .left .text{
  font-size: 14px;
}
footer .footer_inner .left .text > p{
  margin: 10px 0;
  font-weight: 600;
}
footer .footer_inner .left .text .tel{
  display: flex;
  justify-content: flex-start;
}
footer .footer_inner .left .text .tel p:first-child{
  margin-right: 20px;
}
footer .footer_inner .left .text .tel p a{
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
footer .footer_inner .right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .footer_inner .right .footer_menu ul{
  display: flex;
  justify-content: flex-start;
}
footer .footer_inner .right .footer_menu ul li{
  margin-right: 40px;
}
footer .footer_inner .right .footer_menu ul li a{
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

footer .copyright{
  text-align: center;
  background: #fff;
  padding: 20px;
  font-size: 14px;
}
@media screen and (max-width:1024px){
  footer .footer_inner .right .footer_menu ul li{
    margin-right: 20px;
  }
}
@media screen and (max-width:768px){
  footer .footer_inner{
    display: block;
  }
  footer .footer_inner .left .text .tel{
    display: block;
  }
  footer .footer_inner .left .text > p{
    margin: 5px 0;
  }
  footer .footer_inner .right{
    margin-top: 20px;
  }
}

/*=====================================
*
*sidenav
*
=======================================*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}
