@charset "utf-8";

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
html{
	background:#46b023;
	padding:8px 11px;
	scroll-padding-top: 100px;
}

body {
	width: 100% !important;
	color: #1F1F1F;
	line-height: 1.4444;
	overflow: hidden;
	font-size: clamp(1.5rem,1.6vw,1.8rem);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: "Noto Sans JP", sans-serif!important;
	background:#fff;
	border-radius: 20px 20px 0 0;
	font-weight: 500;
}

.maru{
	font-family: "Zen Maru Gothic", sans-serif!important;
}

.en{
	font-family: "Quicksand", sans-serif!important;
}

/* color */
.white{
	color: #ffffff!important;
}
.blue{
	color: blue;
}
.red{
	color: #D93B0B;
}
.green{
	color: #187441!important;
}
.green2{
	color: #349813;
}
.lgreen{
	color: #BBDC65;
}
.yellow{
	color: #FDD85F;
}
.orange{
	color: #FABE00;
}
.orange2{
	color: #EA5B30;
}
.black{
	color: #1F1F1F;
}

.bgwh{
	background: #ffffff;
}
.bgblu{
	background: linear-gradient(to right, #165888 , #172D6B);
}
.bgbla{
	background:#1F1F1F;
}
.bgred{
	background: #D93B0B;
}
.bggre{
	background: #2CB900;
}
.bggre1{
	background: #46B024;
}
.bggre2{
	background: #0F4503!important;
}

.bglgre{
	color: #E5F3C6;
}
.bgyel{
	background: #FDD85F!important;
}
.bgora{
	background: #FABE00;
}

/*リンク表示方法*/

a {
	text-decoration: none;	
}

a:link {
	color: #1F1F1F;
}

a:visited {
	color: #1F1F1F;
}

a:active {
	color: #1F1F1F;
}

a:hover {
	opacity: 0.7;
}

a:hover img {
	opacity: 1;
}

.hLogo a:hover{
	opacity: 1;
}

:has( > .lista){
	position: relative;
}

.lista{
	position: absolute;
	left: 0;
	top:0;
	width:100%;
	height:100%;
	z-index: 1;
}

a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/

.pc,.pc2 {
	display: block;
}

.sp,.sp2, .spTel {
	display: none;
}

.pcTel {
	display: inline;
}


/*-----------------------------------------------------------
header
-----------------------------------------------------------*/

header {
	padding: 0;
	width: calc(100% - 11px);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	right: 0;
	z-index: 9999;
	transition: .4s;
	padding-left: 2.3%;
	top: 0;
	border-top: 8px solid #46b023;
}

header.headerScroll{
	background:#fff;
}

.hLogo{
	max-width: 321px;
	width: 22%;
}

.logo a:hover img {
	opacity: 1;
}

.h_right{
	display:flex;
	justify-content:flex-end;
	align-items:center;
	max-width: 1400px;
	width: 76%;
}


.headerUl{
	display: flex;
	width: 110px;
	margin-left:auto;
}

.menuBtn {
	width: 100%;
	background: #46B023;
	border-radius: 0 0 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 152px;
	position: relative;
	z-index: 9999;
	transition: .4s;
}

.headerScroll .menuBtn{
	height: 100px;
}

/*--- modal ---*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 36px;
  height: 24px;
  z-index: 9999;
  width: 100%;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: #FFFFFF;
  right: 0;
  margin: auto;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

	
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

/*gnav*/
.gnav{
    background: #fff;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 0.7s;
    top: 8px;
    max-width: 594px;
    right: 11px;
    display: block;
    transform: translateX(650px);
}

.gnav.active{
	transform: translateX(0px);
}

.gnav__menu{
    display: block;
    width: 100%;
    padding: 106px 0 60px;
}


.gnav__wrap{
    align-items: flex-start;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    position: fixed;
    width: 100%;
    top: 0px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 594px;
}

.gnav__wrap::-webkit-scrollbar{
  display: none;
}


nav .gnav__menu__item{
    margin: 0px auto 0;
    width: 95%;
    text-align: center;
}

.gnav__menu__item a{
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    background: none;
    width: 100%;
    display: block;
    max-width: max-content;
    margin: 0 auto 4.6%;
    position: relative;
	padding-left:16px;
}


.gnav__menu__item a:before{
	position:absolute;
	content:"";
	width:8px;
	height:8px;
	background:#FDD85F;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	border-radius:50%;
}

nav .gnav__menu__item2{
    margin: 0px auto 20px;
    width: 95%;
    text-align: center;
	display:flex;
	justify-content:center;
}

.gnav__menu__item2 .sns_list{
	width:100%;
	margin:0 auto;
}

a.tel_btn1 {
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:35px;
	height:60px;
	max-width:274px;
	width:100%;
	margin:0 auto;
	border:3px solid;
	color:#187441;
	font-size:3.2rem;
	font-weight:700;
}

 a.tel_btn1 img{
	margin-right:8px;
}

.gnav__menu__item2 a.tel_btn1 img{
	width:10px;
}

/*-----------------------------------------------------------
テーブル共通
-----------------------------------------------------------*/

table {
	border-collapse: separate;
}


/*-----------------------------------------------------------
 nav
-----------------------------------------------------------*/

.pc_nav{
	width: 91%;
	display: flex;
	max-width: 1267px;
	align-items: center;
	justify-content: flex-end;
	margin-right: 1%;
}

.nav_list1{
	display: flex;
	justify-content: flex-end;
	max-width: 771px;
	width: 61%;
}

.nav_list1 li {
	margin-left:auto;
}

.nav_list1 li {
	padding-left:16px;
	position:relative;
}

.nav_list1 li:before{
	position:absolute;
	content:"";
	width:8px;
	height:8px;
	background:#FDD85F;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	border-radius:50%;
}

.nav_list1 li:first-child{
	margin:0;
}

.nav_list1 a {
	display: block;
	font-size: 1.8rem;
	text-decoration: none;
	font-size: clamp(1rem,1vw,1.8rem);
	font-weight: 700;
}

.headerScroll .nav_list1 a {
	color:#111111;
}

.sns_list{
	display:flex;
	justify-content:space-between;
	max-width: 102px;
	width: 9%;
	margin-left: auto;
}

.sns_list li{
	width: 48%;
	max-width: 43px;
}

.hd_link{
	display:flex;
	max-width: 336px;
	width: 27%;
	margin-left: auto;
	justify-content:space-between;
}

.hd_link_btn1{
	display:flex;
	justify-content:center;
	align-items:center;
	max-width:164px;
	width:100%;
	height:60px;
	font-size:1.8rem;
	font-weight: 700;
	line-height:1.5;
	transition: .4s;
	border-radius:50px;
}

.hd_link_btn2{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	max-width:156px;
	width:100%;
	height:60px;
	font-size:1.6rem;
	font-weight: 700;
	line-height:1.5;
	transition: .4s;
	border-radius:50px;
}

.pc_nav .hd_link_btn1{
	font-size: clamp(1rem, 1vw, 1.8rem);
	width:48%;
}

.pc_nav .hd_link_btn2{
	font-size: clamp(1rem, 1vw, 1.6rem);
	width:48%;
}



/*-----------------------------------------------------------
#slide
-----------------------------------------------------------*/

#modal {
	display: none;
}

/*-----------------------------------------------------------
#cover
-----------------------------------------------------------*/

#cover {
	width: 100%;
	margin: 164px auto 0;
	position: relative;
	padding-bottom: 5.5329%;
	z-index: 2;
}

#cover:before{
	position:absolute;
	bottom:0;
	right:0;
	content:"";
	width: 69%;
	height: 56.5%;
	background:#E5F3C6;
	border-radius:0 0 0 30px;
	z-index:-1;
}

.cov-in{
	width: 89.568%;
	margin: 0 auto;
	position: relative;
}

.mv_slider_area{
	width: 100%;
	position: relative;
	height: 44.74vw;
}

.mv_sld{
	height: 44.74vw;
	border-radius:30px;
}


.mv_sld1{
	background:url(./img/top/mv1.jpg)no-repeat center;
	background-size:cover;
}

.mv_sld2{
	background:url(./img/top/mv2.jpg)no-repeat center;
	background-size:cover;
}

.mv_sld3{
	background:url(./img/top/mv3.jpg)no-repeat center;
	background-size:cover;
}

.mv_sld4{
	background:url(./img/top/mv4.jpg)no-repeat center;
	background-size:cover;
}

.slider_btn{
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:100%;
	width: 105.295%;
	pointer-events:none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: -2.65%;
	right: 0;
	z-index: 1;
}

.slider_btn div{
	pointer-events:initial;
	cursor:pointer;
}

.cov-div{
	position:absolute;
	top:0;
	bottom:0;
	margin: auto;
	left:0;
	right:0;
	width: 81%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.cov-tel{
	position:absolute;
	top: -1px;
	right: -1px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.186% 0;
	padding-left: 2.65%;
	padding-right: 1.6%;
	max-width: 788px;
	width: 55%;
	background: #fff;
	border-radius: 0 0px 0 30px;
	z-index: 1;
}

.cov-tel:before,
.cov-tel:after{
	position:absolute;
	content:"";
	width:27px;
	height:27px;
	background:url(./img/top/mv_kado.svg)no-repeat top right;
	background-size:contain;
}

.cov-tel:before{
	top:0;
	right:calc(100% - 1px);
}

.cov-tel:after{
	right:0;
	top:calc(100% - 1px);
}

.cov-tel .left{
	
}

.cov-tel .left a{
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:700;
	font-size: clamp(2.4rem,2.6vw,4.6rem);
	color:#187441;
	line-height: 1.43;
}

.cov-tel .left a img{
	margin-right:12px;
}

.cov-tel .right{
	background:#F8F8F8;
	padding: 1.678% 2.516%;
	line-height:1.444;
	font-size: clamp(1.3rem,1.2vw,1.8rem);
}


.cov-text{
	position:absolute;
	bottom: -5.8%;
	left: -1px;
	background: #FFFFFF;
	max-width: 600px;
	width: 40%;
	padding: 3% 1.6478%;
	border-radius: 0 30px 30px 0;
	font-weight:500;
	font-size: clamp(1.2rem,1.5vw,2.4rem);
	line-height:1.583333;
}

.unli{
	position:relative;
	z-index: 1;
}

.unli:before{
	content:"";
	position:absolute;
	border-radius: 3px;
	background:#FDD85F;
	width:100%;
	height: 50%;
	bottom: -2%;
	z-index: -1;
}

.mainTit .unli:before{
	border-radius: 10px;
	height: 55%;
}

.cov-text .text2{
	margin-top:24px;
}

.cov-text .img1{
	position:absolute;
	bottom: 49%;
	max-width:230px;
	width: 39%;
	right: -5%;
}

.cov-btn{
	position:absolute;
	bottom: 2%;
	right: 15px;
	max-width: 589px;
	width: 40%;
	position: fixed;
	z-index: 999;
}

.btn1{
	background:#FABE00;
	box-shadow:3px 3px 0 #BFA13F;
	display:flex;
	align-items:center;
	border-radius:20px;
	height:68px;
	max-width:362px;
	width:100%;
	font-size:1.8rem;
	font-weight: 700;
	position: relative;
	padding-left: 40px;
	transition:.4s;
}


.btn1:hover:before{
	right:8px;
}

.btn1:before{
	position:absolute;
	content:"";
	width:31px;
	height:31px;
	background:url(./img/common/arrow1.svg)no-repeat center;
	background-size:contain;
	right:15px;
	top:0;
	bottom:0;
	margin:auto;
	transition:.4s;
}


.btn1.bgyel:before{
	background:url(./img/common/arrow1_yel.svg)no-repeat center;
	background-size:contain;
}

.cov-btn .btn1{
	height:91px;
	max-width: 589px;
	font-size: clamp(1.5rem,1.6vw,2.5rem);
	padding: 0 6.8%;
}

.fuki_text {
	font-weight:700;
	font-size: clamp(1.6rem,1.6vw,2rem);
	height:73px;
	display:flex;
	align-items:center;
	justify-content:center;
	border:4px solid #187441;
	border-radius:30px;
	background:#fff;
	z-index: 1;
	position: relative;
}


.cov-btn .fuki_text{
	max-width:288px;
	position:relative;
	z-index:1;
	bottom:-3px;
}

.cov-btn .fuki_text:before{
	position:absolute;
	content:"";
	width:35px;
	height:36px;
	background:url(./img/top/mv_btn_fuki.svg)no-repeat top;
	background-size:contain;
	left:0;
	right:0;
	margin:auto;
	top:80%;
	z-index:-1;
}

.fuki_text:after{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	background:#fff;
	border-radius: 26px;
	z-index: -1;
}

/*-----------------------------------------------------------
 #main
-----------------------------------------------------------*/

#main {
	width: 100%;
	margin: 0px auto 0;
}

.flex{
	display: flex;
	justify-content: space-between;
}

.inner{
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}

.mainTit{
	font-size: 4rem;
	line-height: 1.45;
	font-weight:500;
	font-size: clamp(2.4rem,3vw,4rem);
	text-align:center;
}

.article .mainTit{
	font-weight:700;
	font-size: clamp(2.2rem,3vw,3.4rem);
}


.mainTit .unli,
.mainTit .big{
	font-size: clamp(2.8rem,3.4vw,4.6rem);
	font-weight:700;
}

.mainTit .en_tit{
	display:block;
	line-height: 1;
	font-weight:500;
	font-size: clamp(1.4rem,3vw,1.6rem);
	margin-top:33px;
}

.mainTit2{
	font-size: 2.6rem;
	line-height: 1.423;
	font-weight:500;
	font-size: clamp(1.8rem,3vw,2.6rem);
	text-align: center;
}

.mainTit2 span{font-weight: 700;font-size: clamp(2.2rem,3vw,3.4rem);}

.subTit{
	font-size: 2.4rem;
	line-height:1.2;
	font-weight:700;
	font-size: clamp(2rem,4vw,2.4rem);
}

.content01{padding: 6.85% 0 7.377%;background: url(./img/common/bg_cont.png);background-size: contain;}

.co1_list{
	display:flex;
	justify-content:space-between;
}

.co1_list li{
	background:#FFFFFF;
	position:relative;
	border:5px solid #BBDC65;
	width:32%;
	max-width:364px;
	margin-top: 142px;
	border-radius: 20px;
	padding: 29px 2% 21px;
	text-align:center;
	line-height: 1.456;
	font-weight:500;
	font-size: clamp(1.6rem,2.4vw,2.8rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.co1_list li .img{
	position:absolute;
	top:-94px;
	margin:0 auto;
	width:100%;
}

.co1_list li .text1 .unli{
	font-weight:700;
	font-size: clamp(2rem,2.4vw,4rem);
}

.co1_list li .text1 .unli:before{
	bottom: 0;
	height: 40%;
}

.co1_list li .text1 .small{
	font-size: clamp(1.5rem,2vw,1.7rem);
	display: block;
}

.content02{
	background: #FFF5ED;
	padding: 6.323% 0;
}

.content02 .flex{
	margin: 54px auto 32px;
}

.co2_div{
	background:#fff;
	width: 49%;
	max-width: 580px;
	border-radius: 20px;
	padding: 5.334% 0 4.5%;
	text-align: center;
}

.co2_div .title1{
	font-weight:700;
	font-size: clamp(1.4rem,2.2vw,2.2rem);
	width: 95%;
	margin: 0 auto 20px;
}

.co2_list1{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	max-width:470px;
	margin:0 auto;
	width: 95%;
}

.co2_list1 li{
	width:48%;
	border-radius:20px;
	border:5px solid #FFE0C6;
	margin-top:20px;
	padding:36px 0 31px;
	font-weight:500;
	font-size: clamp(2rem,2.4vw,2.6rem);
	line-height:1.538;
}

.co2_list1 li span{
	font-size: clamp(2.2rem,2.4vw,3rem);
	font-weight:700;
	line-height:1.6;
}

.co2_list1 li span .big{
	font-size: clamp(3rem,2.4vw,4rem);
	line-height:1.2;
}

.content02 .text{
	line-height:2.2222;
}

.content02 .text1{
	max-width:946px;
	width:100%;
	margin:60px auto 0;
	background:#fff;
	border:4px solid #D93B0B;
	border-radius:30px;
	font-weight:700;
	font-size: clamp(1.6rem,2.4vw,2.6rem);
	line-height:1.538;
	padding:15px 1%;
	text-align:center;
}

.content03{
	background: url(./img/common/bg_cont.png);
	background-size: contain;
}

.content03 .ma1920{
	padding: 7.377% 0;
}

.ma1920{
	width:100%;
	margin:0 auto;
	max-width:1920px;
}

.l_inner,
.r_inner{
	width: 90%;
	max-width:1540px;
}

.l_inner{
	margin-right:auto;
}

.r_inner{
	margin-left:auto;
}


.content03 .flex .img{
	max-width:870px;
	width: 57%;
}

.content03 .flex .img img{
	border-radius:0 30px 30px 0;
}

.content03 .flex .text_area{
	max-width:600px;
	width: 41%;
}

.content03 .flex .text_area .mainTit{
	text-align:left;
}

.content03 .flex .text_area .mainTit .en_tit{
	margin: 29px 0 9%;
}

.content03 .flex .text_area .title_div{
	position:relative;
	margin-bottom: 4.667%;
}

.content03 .flex .text_area .title_div .title1{
	font-weight:500;
	font-size: clamp(1.8rem,1.6vw,2.6rem);
	line-height:1.423;
}

.content03 .flex .text_area .title_div .title1 .green2{
	font-size: clamp(2.2rem,2vw,3.4rem);
	line-height:1.4411;
	font-weight:700;
}

.content03 .flex .text_area .title_div .fuki_text{
	position:absolute;
	left: 80%;
	width: 50%;
	max-width:249px;
	height: 95px;
	bottom: 14px;
}

.content03 .flex .text_area .title_div .fuki_text:before{
	position:absolute;
	content:"";
	width:32px;
	height:21px;
	background:url(./img/top/co3_fuki.svg)no-repeat;
	background-size:contain;
	right: 97%;
	top:25%;
	z-index: -1;
}

.content03 .flex .text_area .text1{
	line-height:2.2222;
	margin-top: 4%;
}

.content04{
	padding: 7.377% 0 6.323%;
}

.co4_list1{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: 20px;
}

.co4_list1 li{
	width:19%;
	max-width:225px;
	border: 1px solid #BBDC65;
	font-weight:500;
	font-size: clamp(1.3rem,2vw,1.8rem);
	border-radius: 20px;
	text-align: center;
	padding: 24px 0 23px;
	margin-top: 20px;
}

.co4_list1 li .img{
	margin:0 auto 14px;
}

.co4_list1 li span{
	font-weight:700;
	font-size: clamp(1.5rem,2vw,2rem);
}

.content04 .flex{
	max-width:954px;
	width:100%;
	margin:50px 0 0;
	margin-left:auto;
	align-items: center;
}

.content04 .flex .img{
	max-width:230px;
	width: 25%;
}

.content04 .flex .fuki_text{
	max-width: 708px;
	width: 75%;
	height: initial;
	padding: 19px 0;
}


.content04 .flex .fuki_text:before{
	position:absolute;
	content:"";
	width:41px;
	height:27px;
	background:url(./img/top/co4_fuki.svg)no-repeat;
	background-size:contain;
	right:98%;
	top: 20%;
	z-index: -1;
}

.content04 .flex .fuki_text .unli{
	font-weight:700;
	font-size: clamp(2rem,3vw,2.4rem);
}

.content05{
	padding: 0px 0 6.323%;
	background: #E5F3C6;
}

.content05 .top_tri{
	margin: 0 auto 6.85%;
	text-align:center;
	width: 37%;
}

.co5_div1{
	position:relative;
	overflow:hidden;
	border-radius:30px;
	margin-bottom:70px;
}

.co5_div1:before{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:linear-gradient(to right,#051501 ,#0F450300);
}

.co5_div1 .bg_img{
	width:100%;
	height:507px;
}

.co5_div1 .bg_img img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.co5_div1 .text_area{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto;
	padding: 5% 0px;
	max-width: 610px;
	padding-left: 4.167%;
	width: 60%;
}

.co5_div1 .text_area .title{
	font-size: clamp(2.8rem,2.4vw,4rem);
	line-height:1.45;
	font-weight:700;
	margin-bottom:30px;
}

.co5_div1 .text_area .title .small{
	font-size: clamp(2rem,2.4vw,3rem);
}


.co5_div1 .text_area .text1{
	line-height:2.2222;
	margin-bottom: 8%;
}

.co5_div2{
	width:48%;
	max-width:570px;
	background:#fff;
	overflow:hidden;
	border-radius:30px;
	position:relative;
}


.co5_div2 .top_cont{
	position:relative;
}

.co5_div2 .top_cont .title1{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	text-align:center;
	max-width:361px;
	width: 65%;
	background:#fff;
	border-radius: 50% / 100% 100% 0 0;
	padding:37px 0 5px;
	font-size: clamp(2.8rem,2.4vw,4rem);
	line-height:1.45;
	font-weight:700;
	color: #46B024;
}

.co5_div2 .text_area{
	padding: 15px 0 133px;
	max-width: 368px;
	width: 90%;
	margin: 0 auto;
}

.co5_div2 .text_area .title2{
	margin-bottom:20px;
	font-size: clamp(1.8rem,2.4vw,2.2rem);
	font-weight:500;
	text-align:center;
}

.co5_div2 .text_area .text1{
	line-height:2.25;
	font-size:1.6rem;
}

.co5_div2 .text_area .btn1{
	position:absolute;
	bottom:42px;
	left:0;
	right:0;
	margin:auto;
	width: 90%;
}

.contact_area{
	padding: 6.85% 0 7.377%;
	background: url(./img/common/bg_cont.png);
	background-size: contain;
}

.fuki_area{
	max-width:950px;
	width:100%;
	margin: 0 auto;
}

.contact_area .fuki_area{
	margin: 0 auto 63px;
}

.fuki_area .fuki_text{
	max-width:335px;
	width: 35%;
	bottom:-3px;
}

.fuki_area .fuki_text:before{
	position:absolute;
	content:"";
	width:41px;
	height:36px;
	background:url(./img/common/cont_fuki.svg)no-repeat top;
	background-size:contain;
	left:0;
	right:0;
	margin:auto;
	top:80%;
	z-index:-1;
}

.fuki_area .btn1{
	width:100%;
	max-width:initial;
	height: 91px;
	padding: 0 4%;
	font-size: clamp(1.5rem, 2vw, 2.5rem);
}

.cont_list{
	display:flex;
	justify-content:center;
}

.cont_list li{
    margin: 0 30px;
	width:32%;
	max-width:367px;
	overflow:hidden;
	border-radius:30px;
	transition:.4s;
}

.cont_list li a{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	width:100%;
	height:20vw;
	max-height:274px;
	font-weight:500;
	font-size: clamp(1.6rem,2vw,2.6rem);
	line-height:1.423;
}

.cont_list li a .img{
	min-height:107px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.cont_list li a .text1{
	margin-top:10px;
	text-align:center;
}


.cont_list li a .text1 span{
	display:block;
	line-height: 1;
	font-weight:700;
	font-size: clamp(2.4rem,3vw,4.6rem);
}

.cont_list li.bgyel{
	box-shadow: 3px 3px 0 #BFA13F;
}

.cont_list li.bgyel:hover{
	background:#BFA13F!important;
	opacity:1;
}

.cont_list li.bggre{
	box-shadow: 3px 3px 0 #218B00;
}

.cont_list li.bggre:hover{
	background: #218B00;
	opacity:1;
}

.cont_list li.bgwh{
	border:4px solid #187441;
	color:#187441;
}

.cont_div{
	max-width:946px;
	margin:60px auto 0;
	width:100%;
	border:4px solid #187441;
	border-radius:30px;
	background:#fff;
	padding:19px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cont_div .text1{
	font-weight:700;
	font-size: clamp(1.5rem,2.4vw,2.6rem);
	line-height:1.384;
}

.cont_div .text2{
	line-height:2;
	display: block;
	font-size: clamp(1.5rem,2vw,1.8rem);
	font-weight:500;
}

.content06{
	padding: 9% 0 7.377%;
	background: #FFF5ED;
}

.co6_div2{
	padding: 4.742% 0 4.4788%;
}

.co6_div2 .text_area{
	max-width:600px;
	width: 41%;
}


.co6_div2 .img{
	max-width:870px;
	width: 57%;
}

.co6_div2 .img img{
	border-radius:30px 0 0 30px;
}


.co6_div2 .text_area .text1{
	margin-bottom: 4%;
	line-height:2.2222;
}

.co6_div21{
	background:#FFFFFF;
	border:4px solid #FFD8AA;
	border-radius:20px;
	padding: 26px 12px;
}

.co6_div21 .title1{
	font-size: clamp(1.8rem,2.4vw,2.2rem);
	line-height:1.4545;
}

.co6_list1 li{
	margin-top: 3.875%;
	line-height:1.4444;
	padding-left:12px;
	position:relative;
}

.co6_list1 li:before{
	position:absolute;
	content:"";
	width:8px;
	height:8px;
	background:#D93B0B;
	border-radius:50%;
	left:0;
	top:10px;
}

.co6_list1 li span{
	font-weight:700;
}

.co6_div3{
	/* padding:85px 0 0; */
}

.co6_list2{
	display:flex;
	justify-content:space-between;
	flex-wrap: wrap;
}

.co6_list2 li{
	background:#fff;
	margin-top:50px;
	width:24%;
	text-align:center;
	border-radius:20px;
	padding:30px 0 37px;
}

.co6_list2 li .text1{
	margin-top:19px;
	font-size: clamp(1.8rem,2.4vw,2.3rem);
	line-height:1.3;
}

.co6_list2 li .text1 span{
	font-size: clamp(1.8rem,2.4vw,2.4rem);
	font-weight:700;
}

.co6_div3_text1{
	margin:34px auto 0;
	background:#fff;
	border:4px solid #D93B0B;
	border-radius:30px;
	max-width:946px;
	width:100%;
	font-size: clamp(1.6rem,2.4vw,2.6rem);
	font-weight:700;
	text-align:center;
	padding:15px 0;
}

.co6_div4{
	padding:105px 0 0;
}

.over_sld{
	margin:50px auto 0;
}

.top_tb{
	width:100%;
}

.top_tb th{
	width: 28.5%;
	background: #C35837;
	color: #fff;
	height: 93px;
	font-size: clamp(1.6rem,2vw,2.6rem);
	font-weight:700;
}

.top_tb th:last-child{
	width: 43%;
}

.top_tb td{
	height:82px;
	background:#fff;
	line-height:1.77778;
}

.top_tb th,
.top_tb td{
    text-align: center;
	border-left:1px solid #FCB49E;
	border-bottom:1px solid #FCB49E;
}


.top_tb th:last-child,
.top_tb td:last-child{
	border-right:1px solid #FCB49E;
}

.top_tb td:last-child{
	text-align:left;
	padding: 0 4%;
}

.co6_div4 .over_sld .text{
	margin:37px 0 0;
}

.content07{
	padding: 6.323% 0 55px;
}

.top_title_area1{
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	margin-bottom:40px;
}

.top_title_area1 .mainTit{
	text-align:left;
}

.top_title_area1 .mainTit .en_tit{
	margin-top:8px;
}

.works_list1{
	display:flex;
	flex-wrap:wrap;
}

.works_list1 li{
	width: 30.667%;
	margin-right: 3.9995%;
}

.works_list1 li:nth-child(3n+3){
	margin-right:0;
}

.works_list1 li:hover{
	opacity:0.7;
}

.works_list1 li .img{
	width:100%;
	height:20vw;
	max-height:258px;
	margin-bottom:18px;
}

.works_list1 li .img img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:30px;
}

.works_list1 .cate_area{
	display:flex;
	align-items:center;
	margin-bottom: 13px;
	flex-wrap: wrap;
}

.cate1{
	padding:2px 20px;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.5;
	border-radius:20px;
	color:#fff;
	max-width:max-content;
	margin-bottom: 8px;
}

.cate11{
	background:#46B024;
}


.cate12{
	background:#0F4503;
}

.cate2{
	 padding: 2px 20px;
	 font-size: 1.6rem;
	 font-weight: 500;
	 line-height: 1.5;
	 border-radius: 20px;
	 max-width:max-content;
	 margin-bottom: 8px;
	 color: #fff;
}

.cate21{
	border:1px solid #46B024;
}

.cate22{
	border:1px solid #FABE00;
}

.works_list1 .cate_area .cate1{
	margin-right:12px;
}


.works_list1 li .title1{
	font-size: clamp(1.8rem,2vw,2rem);
	font-weight: 700;
	line-height: 1.45;
}

.content08{
	padding: 6.323% 0 55px;
}

.news_list1{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-top:-56px;
}

.news_list1 li{
	display:flex;
	max-width:552px;
	width:48%;
	justify-content:space-between;
	margin-top:56px;
}

.news_list1 li:hover{
	opacity:0.7;
}

.news_list1 li .img{
	width: 44%;
	height: 18vw;
	max-height:226px;
	max-width:240px;
}

.news_list1 li .img img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:30px;
}


.news_list1 li .text_area{
	max-width:284px;
	width: 54%;
}

.news_list1 li .text_area .date{
	margin: 0px 0 9.86%;
	font-size:1.6rem;
	line-height:1.5;
}

.news_list1 li .text_area .title1{
    font-size: clamp(1.8rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 5.638%;
}

.news_list1 li .text_area .text1{
	margin-bottom:4px;
	font-size:1.6rem;
	line-height:2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.news_list1 li .text_area .text2{
	font-size:1.6rem;
}

.content09{
	padding: 6.323% 0 6.85%;
}

.content09 .mainTit{
	margin:0px auto 50px;
}

.content09 .btn1{
	margin:60px auto 0;
}

/*-----------------------------------------------------------
 footer
-----------------------------------------------------------*/

footer {
	margin: 0px auto 0;
	padding: 80px 0 0;
}

footer .logo {
	max-width: 321px;
	width: 100%;
	margin-bottom: 48px;
}

.ft_list1 li{
	display:flex;
	margin-bottom:8px;
	align-items:center;
}

.ft_list1 li .text1{
	width:96px;
	height:38px;
	flex-shrink:0;
	display:flex;
	align-items:center;
	background:#F8F8F8;
	text-align:center;
	justify-content:center;
	font-size:1.8rem;
	font-weight:700;
	border-radius:10px;
	margin-right:16px;
}

.ft_list1 li .text2{
	font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}

.tel_btn2 {
	display:flex;
	align-items:center;
	margin-top:13px;
	font-size:3rem;
	font-weight:700;
	line-height:1.466;
}

.tel_btn2 img{
	margin-right:8px;
}

.ft_list2 li{
	margin-bottom:20px;
	padding-left:16px;
	position:relative;
}

.ft_list2 li.child{
	margin-left:20px;
}

.ft_list2 li:before{
	position:absolute;
	content:"";
	width:8px;
	height:8px;
	background:#FDD85F;
	border-radius:50%;
	left:0;
	top:12px;
}


.ft_list2 li.child:before{
	content:"";
	width:10px;
	height:2px;
	border-radius:0;
}

footer .flex .left{
	max-width:430px;
	width: 36%;
}

footer .flex .right{
	max-width:647px;
	width: 62%;
}

footer .sns_list{
	
width: 100%;
	
margin-top: 10px;
}


.copyright {
	background: #46B023;
	color: #fff;
	text-align: center;
	padding: 40px 0 16px;
	margin:65px auto 0;
	border: 1px solid #46B023;
	font-size: 1.4rem;
	text-align: right;
}



/* 全ページ共通クラス
----------------------------------------------------------- */

/*--- パンくず ---*/

.pankuzu_area{
	width:100%;
}

.subsidies .pankuzu_area{
	background:#FFF5ED;
}

.pankuzu {
    width: 95%;
    margin: 0 auto;
    font-size: 14px;
    padding: 32px 0 0;
    max-width: 1200px;
}

.pankuzu li {
    margin: 0 0 0 10px;
    display: inline;
}

.pankuzu li:first-child {
    margin: 0;
}

.pankuzu li a {
    margin: 0 10px 0 0;
}

/*--- ページトップ ---*/
#pageTop {
	position: fixed;
	bottom: 200px;
	right: 25px;
	z-index: 9999;
}



/* wordpress 記事 */

.works_div1 .text_area img,
.detail_area img{
	margin-bottom:24px;
	width: revert-layer;
}

.works_div1 .text_area p:has(img),
.detail_area p:has(img){
	margin:0;
}


.alignright{
	margin-left:auto;
	display:block;
}


.aligncenter{
	margin-left: auto;
	margin-right: auto;
	display:block;
}

.works_div1 .text_area p,
.detail_area p{
	margin-bottom:24px;
	font-size: clamp(1.5rem,2.3vw,1.6rem);
	line-height:2;
}

.works_div1 .text_area h2,
.detail_area h2{
	margin-bottom:24px;
	font-size: clamp(2.4rem,3vw,3.2rem);
	line-height:2;
}

.works_div1 .text_area h3,
.detail_area h3{
	margin-bottom:24px;
	font-size: clamp(1.8rem,2.3vw,2.4rem);
	line-height:2;
}

.works_div1 .text_area h4,
.detail_area h4{
	margin-bottom:24px;
	font-size: clamp(1.6rem,2.3vw,1.8rem);
	line-height:2;
}

/* article */

#art_cover{
	margin-top: 152px;
	background:url(./img/common/art_mv.jpg)no-repeat;
	background-size:cover;
	height: 408px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.art_cov .title{
	font-size:8rem;
	font-size: clamp(2.4rem,6vw,8rem);
	font-weight:700;
	line-height:1.45;
}

.art_cov .title .unli:before{
	
height: 38%;
	
border-radius: 10px;
}

.art_cov .text{
	margin-top:22px;
	font-size:2.4rem;
	font-size: clamp(1.6rem,2.4vw,2.4rem);
	font-weight:500;
	line-height:1.25;
}

.company01{
	padding:120px 0;
}

.company01 .img{
	margin:55px auto;
}

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

.artTit{
		font-size: 4.6rem;
	line-height: 1.43;
	font-size: clamp(2.8rem,3.4vw,4.6rem);
	font-weight:700;
}

.artTit .en_tit{
	display:block;
	line-height: 1;
	font-weight:500;
	font-size: clamp(1.4rem,3vw,1.6rem);
	margin-top:19px;
}

.company01 .text1{
	margin-top:36px;
	line-height: 2;
}

.company01 .text1 span{
	font-weight:700;
}

.company01 .text2{
	margin-top:40px;
	font-weight:700;
	font-size: clamp(2.4rem,3vw,2.6rem);
	text-align:right;
}

.company01 .text2 span{
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	margin-right:32px;
}

.company02{
	padding:100px 0 120px;
	background:#E5F3C6;
}

.company02 .comp_list1{
	margin:55px 0 0;
}

.comp_list1{
	background: #fff;
}

.comp_list1 li{
	display:flex;
	justify-content:space-between;
	border:1px solid #349813;
	border-top:none;
}

.comp_list1 li:first-child{
	border-top:1px solid #349813;
}

.comp_list1 li .left{
	background:#227145;
	color:#fff;
	width: 21.25%;
	flex-shrink: 0;
	padding: 24px 4.2%;
	font-weight: 700;
}

.comp_list1 li .right{
	width: 100%;
	padding: 24px 5.343%;
}

.map{
	width:100%;
	height:300px;
}

iframe{
	width:100%;
	height:100%;
}

.article01{
	padding:120px 0 100px;
}

.art_flex1{
	display:flex;
	align-items:center;
}

.article01 .ma1920 .flex .img{
	width: 57%;
	max-width: 870px;
}

.article01 .ma1920 .l_inner .flex .img img{
	border-radius:0 30px 30px 0;
}

.article01 .ma1920 .r_inner .flex .img img{
	border-radius:30px 0 0 30px;
}

.article01 .ma1920 .flex .text_area{
	width: 41%;
	max-width: 600px;
}

.article01 .ma1920 .flex .text_area .mainTit{
	text-align:left;
}

.article01 .ma1920 .flex .text_area .mainTit .en_tit {
    margin-top: 19px;
}

.article01 .ma1920 .flex .text_area .text1{
	margin-top: 9%;
	line-height:2.2222;
}

.insu01_div{
	padding-top:100px;
}

.insu01_list1{
	margin-top:20px;
}

.insu01_list1 li{
	padding:30px 0;
	border-bottom:1px solid #349813;
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.insu01_list1 li .num{
	width:81px;
	height:81px;
	display:flex;
	align-items:center;
	justify-content:center;
	border:2px solid #BBDC65;
	border-radius:50%;
	flex-shrink:0;
	margin-right:24px;
	font-size:4.3rem;
	font-weight:700;
}

.insu01_list1 li .text_area{
	width:100%;
}

.insu01_list1 li .text_area .title1{
	font-weight:700;
	font-size: clamp(2rem,3vw,2.6rem);
}

.insu01_list1 li .text_area .text1{
	margin-top:12px;
}

.btn_flex{
	width:100%;
	display:flex;
	justify-content:space-between;
	max-width:1020px;
	margin:80px auto 0;
}

.btn_flex .btn1{max-width: 420px;width: 49%;}

.insu02{
	padding:80px 0 0px;
	background:#E5F3C6;
}


.insu02 .flex{
	margin:50px auto 0;
}

.insu02_div{
	max-width:570px;
	width: 49%;
}


.comp_list1.half li .left{
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	font-size: clamp(1.5rem, 1.6vw, 2rem);
	width: 34.332%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 137px;
}

.comp_list1.half li .right{
	padding-left: 5%;
	padding-right: 5%;
	min-height: 137px;
	display: flex;
	align-items: center;
}

.comp_list1 li .right .text1 .big{
	font-weight:700;
	font-size: clamp(2rem,2vw,2.4rem);
}

.insu02_div > .text{
	font-weight:700;
	margin:14px 0 0;
}

.insu02_div1{
	background:#fff;
	margin-top:40px;
	padding: 20px 4.915% 30px;
	border-radius:20px;
}


.insu02_div1 .text{
	margin-bottom:24px;
	font-weight:700;
}

.insu02_list1{
	display:flex;
	justify-content:space-between;
}

.insu02_list1 li{
	width: 24%;
	max-width: 110px;
	border: 2px solid #FFE0C6;
	border-radius: 8px;
	text-align: center;
	font-size: clamp(1.4rem, 1.4vw, 1.6rem);
	padding:12px 0;
}

.insu02_list1.col3 li{
	width:32%;
	max-width:initial;
}

.insu02_list1 li .text1 .red{
	display:block;
	font-weight:700;
	font-size: clamp(2.4rem,3vw,2.6rem);
}

.insu02_list1 li .text1 .red .small{
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
}

.insu03{
	padding: 100px 0;
	background:#E5F3C6;
}

.insu03 .works_list1{
	margin:50px auto 55px;
}

.insu03 .btn1{
	margin:0 auto;
}

.renov01_div{
	padding: 80px 0 0;
}

.renov01_div .text{
	margin-top:50px;
	text-align:center;
	line-height:2.2222;
}

.renov01_list{
	display:flex;
	justify-content:space-between;
	margin:62px auto 0;
}

.renov01_list li{
	width:48%;
	max-width: 562px;
}

.renov01_list li .text1{
	text-align:center;
	background:#fff;
	padding: 3.3%;
	border:4px solid #187441;
	border-radius:59px;
	font-size: clamp(1.5rem, 1.6vw, 2rem);
	margin-bottom:40px;
}

.renov01_list li .img{
	max-width:532px;
	width:100%;
	margin:0 auto;
}

.renov01_list li:last-child .img{
	max-width:474px;
	width: 91%;
}

.renov02{
	padding:80px 0 100px;
	background:#E5F3C6;
}

.renov02_list1{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-bottom: 90px;
}

.renov02_list1 li .img{
	border-bottom:1px solid #349813;
}

.renov02_list1 li{
	background:#fff;
	width:32%;
	border:1px solid #349813;
	border-radius:20px;
	margin-top:40px;
	overflow: hidden;
}

.renov02_list1 li .text_area{
	padding: 8.7% 6.2% 10.4%;
}

.renov02_list1 li .text_area .title1{
	text-align:center;
	margin-bottom: 7%;
	font-size: clamp(1.7rem, 1.6vw, 2rem);
}

.renov02_list1 li .text_area .text1{
	line-height:2.2222;
}

.renov03{
	padding:100px 0 120px;
}

.renov03_list1 > li{
	display:flex;
	justify-content:space-between;
	border-bottom:1px solid #349813;
	padding:60px 0;
}

.renov03_list1 > li .text_area{
	max-width:600px;
	width:49%;
}

.renov03_list1 > li .img_area{
	max-width:570px;
	width:49%;
}

.renov03_list1 > li .img_area .img{
	margin-bottom:16px;
}

.renov03_list1 > li .img_area .text1{
	font-size:1.6rem;
	line-height:1.5;
}


.renov03_list1 > li .text_area .title1{
	font-weight:700;
	font-size: clamp(1.6rem,3vw,2.4rem);
}

.renov03_list1 > li .text_area .title1 .unli{
	font-size: clamp(2.2rem,3vw,2.8rem);
}

.renov03_list1 > li .text_area .text1{
	margin-top: 6.4%;
}

.renov03_list2{
	margin-top: 4.8%;
}

.renov03_list2 li{
	padding-left:18px;
	position:relative;
	line-height:2.2222;
}


.renov03_list2 li:before{
	position:absolute;
	content:"";
	width:10px;
	height:10px;
	background:#187441;
	border-radius:50%;
	left:0;
	top:15px;
}

.renov03_list1 > li .btn1{
	margin: 6.8% 0 0;
}

.text_cap{
	text-align:right;
	margin-top:24px;
	font-size:1.6rem;
}

.qanda01{
	padding:120px 0 0;
}

.qanda_list{
	margin:50px auto 0;
}

.qanda_list li{
	border-top:1px solid #D9D9D9;
	padding: 24px 28px;
}

.qanda_list li:last-child{
	border-bottom:1px solid #D9D9D9;
}

.qanda_list li dt,
.qanda_list li dd{
	display:flex;
	align-items:baseline;
	font-weight: 700;
	position: relative;
}

.qanda_list li dt{
	padding-bottom: 21px;
}

.qanda_list li dd{
	line-height:2;
}

.qanda_list li .que,
.qanda_list li .ans{
	margin-right:13px;
	flex-shrink:0;
	font-size:2.4rem;
	font-weight:700;
}

.qanda01 .text1{
	padding:60px 0 120px;
	line-height:2.22222;
}

.privacy01{
	padding:120px 0;
}

.privacy01 .text{
	margin-bottom:55px;
	line-height:2.222;
}

.privacy01 dt{
	font-weight:700;
	font-size: clamp(2rem,3vw,2.6rem);
	color:#187441;
}

.privacy01 dd{
	line-height:2.222;
	margin:12px 0 40px;
}

.privacy01 dd:last-child{
	margin-bottom:0;
}

.privacy01 dd ul li{
	margin-bottom:40px;
	padding-left:16px;
	position:relative;
	line-height:2.2222;
}

.privacy01 dd ul li:before{
	position:absolute;
	content:"";
	width:10px;
	height:10px;
	border-radius:50%;
	top:15px;
	background:#202020;
	left:0;
}

.privacy01 dd ul li .title1{
	position:relative;
	font-weight:700;
}

.privacy01 dd ul li .text2{
	margin-top:20px;
}

.privacy01 dd ul li .text2 span{
	font-weight:700;
}

.sitemap01{
	padding:120px 0;
}

.sitemap01 .left{
	max-width:279px;
	width: 32%;
}

.sitemap01 .center{
	max-width:264px;
	width: 32%;
}

.sitemap01 .right{
	max-width: 262px;
	width: 32%;
}

.sitemap_list{
	margin-bottom:50px;
}

.sitemap_list:last-child{
	margin-bottom:0px;
}

.sitemap_list li{
	padding-left:20px;
	position:relative;
}

.sitemap_list li.parent a{
	color:#187441;
	font-size: clamp(1.8rem,2vw,2rem);
	font-weight: 700;
}

.sitemap_list li.parent:before{
	position:absolute;
	content:"";
	width:8px;
	height:8px;
	background:#FDD85F;
	border-radius:50%;
	left:0;
	top:10px;
}

.sitemap_list li.child {
	margin-top: 16px;
	padding-left: 18%;
}

.sitemap_list li.sub{
	margin-top: 40px;
	padding-left: 18%;
}

.sitemap_list li.sub.noma{
	margin-top: 10px;
}

.sitemap_list li.sub a{
	font-weight:700;
}

.sitemap_list li.sub .text1{
	margin-top: 0px;
	line-height:2.2222;
}

.method01_div{
	padding:80px 0 0;
}

.method01_div .img{
	margin:0 auto 80px;
}

.method01_list1{
	display:flex;
	justify-content:space-between;
	position:relative;
	margin-top:138px;
}

.method01_list1:before{
	position:absolute;
	content:"";
	width:90%;
	margin:auto;
	height:5px;
	background:#187441;
	top:0;
	bottom:0;
	left:0;
	right:0;
}

.method01_list1 li{
	position:relative;
	background:#fff;
	border:5px solid #BBDC65;
	border-radius:20px;
	height:160px;
	width:32%;
	max-width:378px;
	text-align:center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 57px 1% 23px;
	font-weight: 700;
	font-size: clamp(1.6rem,2vw,2.4rem);
}

.method01_list1 li .num{
	position:absolute;
	left:0;
	right:0;
	top:-88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:#fff;
	border:5px solid #BBDC65;
	border-radius:50%;
	width:132px;
	height:132px;
	margin:auto;
}

.method01_list1 li .num .step{
	font-size:2rem;
	line-height:1;
}

.method01_list1 li .num .text1{
	font-size:5.8rem;
	line-height:1;
}

.method01_list1_text{
	margin-top:32px;
}

.method_flex{
	
}

.method_flex .text_area{
	max-width:600px;
	width: 50%;
}

.method_flex .img_area{
	max-width:533px;
	width: 48%;
}

.method_flex .img_area .img{
	max-width:467px;
	width:100%;
}

.method_flex .img_area .text1{
	text-align:right;
	font-size:1.6rem;
	margin-top:28px;
}

.method03_list1 li{
	margin-bottom:50px;
}

.method03_list1 li .title{
	margin-bottom:20px;
	background:#E5F3C6;
	padding:10px 25px;
	font-weight: 700;
	font-size: clamp(1.6rem,2vw,2.4rem);
}

.method03_list1 li .text1{
	position:relative;
	padding-left:18px;
	margin-bottom:16px;
	line-height: 1.834;
}

.method03_list1 li .text1:before{
	position:absolute;
	content:"";
	width:10px;
	height:10px;
	background:#187441;
	border-radius:50%;
	left:0;
	top: 13px;
}

.method07_div1{
	margin-bottom:120px;
}

.method07_div1 .flex .text_area{max-width: 504px;width: 48%;}

.method07_div1 .flex .img_area{
	max-width: 525px;
	width: 48%;
}

.method07_div1 .flex .text_area .mainTit{
	text-align:left;
}

.method07_div1 .flex .text_area .mainTit .en_tit {
    margin-top: 19px;
}

.method07_div1 .flex .text_area .text1{
	line-height: 2.222;
	margin-top: 11%;
}

.method07_div1 .flex .text_area .text1 span{
	font-size:1.6rem;
}

.method07_div1 .flex .text_area .text2{
	line-height: 2.222;
	margin-top: 7%;
}

.method07_div1 .flex .img_area .img{
	max-width: 450px;
	width:100%;
}

.method07_list1{
	margin-top:20px;
}

.method07_list1 li{
	margin-top:20px;
	background:#fff;
	border:4px solid #BBDC65;
	border-radius:20px;
	padding: 28px 3.5%;
}

.method07_list1 li .title{
	font-weight:700;
	font-size: clamp(2rem,3vw,2.6rem);
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid #349813;
}

.method07_list1 li .title .small{
	font-size: clamp(1.8rem,2vw,2rem);
	font-weight: 700;
}

.method07_list1 li .text{
	line-height:2.222;
}

.article01 .ma1920 .flex .text_area .text3{
    margin-top: 20px;
	font-size:1.6rem;
}

.contact01{
	padding:100px 0;
	text-align:center;
}

.contact01 .text1{
	font-weight: 700;
	font-size: clamp(2.4rem,3vw,4rem);
	line-height:1.6;
	margin-bottom:60px;
}

.contact01 .text1 .big{
	font-size: clamp(3rem,4vw,6rem);
	line-height:1;
}

.contact01 .text2{
	margin-bottom:60px;
	font-weight: 700;
	font-size: clamp(2rem,2.4vw,3.2rem);
	line-height:1.8125;
}

.contact01 .text2 .big{
	font-size: clamp(2.4rem,3vw,4rem);
	line-height:1;
}


.contact01 .text3{
	margin-bottom:50px;
	font-weight: 700;
	font-size: clamp(1.8rem,2vw,2.6rem);
	line-height:1.84;	
}

.cont_01_div.fuki_area{
max-width: 517px;
}


.fuki_area.cont_01_div .fuki_text{
	height: 59px;
}

.fuki_area.cont_01_div .btn1{
    font-weight: 500;
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    padding: 0 7.8%;
}


.tb_div{
	background:#fff;
	border-radius:20px;
	padding: 12px 0 70px;
	margin: 50px auto 0;
}

.tb_flex{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	max-width:643px;
	width:100%;
}

.tb_flex .mwform-checkbox-field.horizontal-item{
	margin: 0 0 10px;
	width: 49%;
}

.tb_flex label{
	display:flex;
	margin-right:5%;
	align-items: center;
}

.tb_flex label input{
	margin-right:8px;
}

.tb_text{
	margin-top:22px;
	font-size:1.4rem;
	font-weight:500;
	line-height:2;
}

.input_area{
	padding-bottom:34px;
	border-bottom:1px solid #B1B1B1;
}


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

input {
	vertical-align: middle;
}

.btnBox1 {
	text-align: center;
}

.contact_cf .clearForm,.contact_cf .clearForm2 {
	padding: 10px 5px;
}


.clearForm,
.clearForm2,
.toHome {
	width: 100%;
	cursor: pointer;
	outline: 0;
	color: #1F1F1F!important;
	font-size: 1.8rem;
	border: none;
	font-weight: 700;
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	background: none;
	margin: 0 auto!important;
	height: 100%;
	text-align: left;
	padding-left: 54px;
}

.green .clearForm,
.green .clearForm2,
.green .toHome {
	color: #2CB573 !important;
	
}


.toHome {
	margin: 50px auto 0 !important;
	text-decoration: none;
	display: block;
	text-align: center;
}

.tb_inp.mabo{
	margin-bottom:16px;
}

textarea {
	padding: 10px;
	height: 200px;
	width: 100%;
	background: #FCFCFC;
}

.mw_wp_form input[type="file"]{
	width:100%;
}

input,
textarea,
button,
select,
option {
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select{
	height: 40px;
	padding: 5px 15px;
	width: 100%;
	background: #FCFCFC;
}

::placeholder{
	color:#CCCCCC;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
option,
select{
	border: 1px solid #D3D3D3;
}


select{
	max-width:340px;
}

input[type="date"]{
	width:100%;
	max-width:204px;
	height:42px;
}

button {
	border: none;
	outline: none;
	background: none;
}

.form_notice1 {
	font-size: 85.714%;
	display: block;
	margin: 5px 0 0;
}

.form_notice2 {
	font-size: 87.5%;
}

.modification_wrap {
	overflow: hidden;
}

.modification {
	width: 221px;
	float: left;
	margin: 0 0 0 246px;
}

.send_bt {
	width: 221px;
	float: right;
	margin: 0 245px 0 0;
}

.error_style {
	color: #FF0000;
	display: block;
	margin: 8px 0 0;
}


.contact_tb th, .contact_tb td {
	padding: 28px 0;
	position: relative;
	font-weight: 700;
	border-bottom: 1px solid #D9D9D9;
}

.contact_tb {
	width: 100%;
	margin: auto;
}


.contact_tb th {
	width: 28%;
	text-align: left;
	padding-right: 1%;
	padding-left: 2.667%;
}

.contact_tb th.vert{
	vertical-align:top;	
}

.contact_tb td {width: 72%;font-size: 1.6rem;font-weight: 500;padding-right: 2.667%;}

.contact_tb td .text{
	font-size:1.4rem;
}

.contact_tb th span{
	margin-right:24px;
}

em{
	background: #EA5B30;
	border-radius:2px;
	color:#fff;
	padding:1px 6px;
	white-space: nowrap;
	font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}

em.novali{
	background:#187441;
}

.contact01_div3{
	margin-top:80px;
}


.pri_div{
	padding: 32px 3%;
	height: 285px;
	overflow-y:scroll;
	margin: 24px auto 79px;
	background: #fff;
	-ms-overflow-style: none;
	scrollbar-width: none;
	width: 100%;
	border: 1px solid #CCCCCC;
	font-size: 1.4rem;
}

.pri_div.pri_div2{
	padding: 24px 4%;
	height: 285px;
	overflow-y:scroll;
	margin: 24px auto 56px;
	background: #F1F4E0;
	-ms-overflow-style: none;
	scrollbar-width: none;
	border: 2px solid #F1F4E0;
	width: 100%;
	border-radius: 10px;
}

.pri_div::-webkit-scrollbar{
	display: none;
}


.pri_div h3{
	font-size: 1.8rem;
	line-height: 1.46;
	margin-bottom: 24px;
}

.pri_div.pri_div2 h3{
	font-size: clamp(1.8rem,2vw,2.4rem);
	line-height: 1.8;
	margin-bottom: 24px;
	color: #534541!important;
}

.pri_div dt{
	font-size: 1.4rem;
	line-height: 2.057;
}

.pri_div dd{
    font-size: 1.4rem;
    line-height: 2.057;
	margin-bottom:24px;
}

.pri_div dd p.matop{
	margin-top:24px;
}

.privacy_area{
	display:flex;
	align-items:center;
	justify-content:center;
	margin: 0 auto 20px;
	width: 90%;
}

.privacy_area label{
	display:flex;
	align-items: center;
}

.privacy_area a{
	color: #009DCD;
	display: inline-flex;
	align-items: baseline;
	border-bottom: 1px solid;
}

.privacy_area a img{
	margin-left:2px;
	margin-right:4px;
}

.privacy_area input{
	width: 15px;
	height: 15px;
	border: 1px solid #ccc;
	border-radius: 0;
	accent-color: #ccc;
	margin-right: 5px;
}

.contact02{
	background:#E5F3C6;
	padding:80px 0 120px;
}

.tb_text1{
	text-align:center;
	margin: 50px auto 28px;
	font-size: clamp(1.8rem,2vw,2rem);
	font-weight: 700;
	line-height:1.45;
	width: 90%;
}

.tb_text1 a{
	text-decoration:underline;
}

.send_btn.btn1{
	margin:0 auto;
	padding: 0;
	width: 90%;
}

.content06.subsi01{
	padding: 6.323% 0 5.269%;
}

.subsi01 .logoimg{
	max-width:284px;
	width: 30%;
	margin: 0 auto 4.167%;
	min-width: 150px;
}

.subsi02{
	padding:80px 0 0;
}

.subsi02_list1 {
	padding:18px 0 0;
}

.subsi02_list1 li{
	display:flex;
	align-items:center;
	margin:32px 0 0;
}

.subsi02_list1 li .left{
color: #D93B0B;
background: #FFF5ED;
flex-shrink: 0;
width: 235px;
display: flex;
align-items: center;
justify-content: center;
height: 65px;
font-size: 2.6rem;
font-weight: 700;
margin-right: 40px;
}

.subsi02_list1 li .right{
	width:100%;
}

.subsi03{
	padding:100px 0;
}

.subsi03 .text{
	font-size: clamp(1.8rem,2vw,2.4rem);
	line-height: 1.45833;
	margin: 50px 0 36px;
}

.subsi03_list1 li{
	margin-bottom:53px;
}

.subsi03_list1 li:last-child{
	margin-bottom:0px;
}


.subsi03_list1 li .title1{
	font-weight: 700;
	font-size: clamp(1.8rem,2vw,2.6rem);
	line-height:1.423;
}


.subsi03_list1 li .text1{
	margin-top:21px;
	font-size: clamp(1.5rem, 1.6vw, 1.6rem);
}

.subsi03_div{
	display:flex;
	margin-top:21px;
	border:1px solid #FDD8AA;
}

.subsi03_div .left{
	background:#FFF5ED;
	display:flex;
	align-items:center;
	justify-content:center;
	width: 22.2%;
	flex-shrink: 0;
	font-weight: 700;
	font-size: clamp(1.8rem,2vw,2.6rem);
}

.subsi03_div .right{
	padding: 3.5% 5%;
	width: 100%;
}

.subsi03_div .right .text2{
	line-height:2.2222;
}

.subsi03_div .right .text3{
	position:relative;
	padding-left:18px;
	margin-bottom:10px;
}


.subsi03_div .right .text3:last-child{
	margin-bottom:0;
}

.subsi03_div .right .text3:before{
	position:absolute;
	content:"";
	width:10px;
	height:10px;
	background:#D93B0B;
	border-radius:50%;
	left:0;
	top:10px;
}

.content06.subsi04{
	padding: 80px 0 7.377%;
}


.content06.subsi04 .co6_div4 {
    padding: 0px 0 0;
}



.pagination-list{
	display:flex;
	margin: 0px auto 0;
	justify-content: center;
	width: 100%;
}

.pagination-list .page-numbers{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.6rem;
	width: 42px;
	height: 42px;
	background: #fff;
	margin: 0 0.6%;
	transition:.4s;
	font-weight: 700;
	text-decoration: none;
	color: #1F1F1F;
	border-radius:50%;
}


.pagination-list .page-numbers.current,
.pagination-list .page-numbers:hover{
	background: #FDD85F;
	opacity:1;
}



.pagination-list .page-numbers.prev{
	background:#fff;
	margin: 0px 1.8% 0 0;
	position:relative;
}

.pagination-list .page-numbers.next{
	background:#fff;
	margin: 0px 0% 0 1.8%;
	position:relative;
}

.pagination-list .page-numbers.prev:before,
.pagination-list .page-numbers.next:before{
	content: '';
	width:12px;
	height: 12px;
	border-top: solid 2px #202020;
	border-right: solid 2px #202020;
	position: absolute;
	left: 0px;
	top:0px;
	transform: rotate(-135deg);
	right:0;
	bottom:0;
	margin:auto;
}

.pagination-list .page-numbers.next:before{
	transform: rotate(45deg);
}


.pagination-list .page-numbers.prev:hover,
.pagination-list .page-numbers.next:hover{
	background: #FDD85F;
}



.news01{
	padding:120px 0;
}

.news01 .flex .main_cont{
	width: 70%;
	max-width:814px;
}

.news01 .flex .side_cont{
	width: 28%;
	max-width:230px;
}

.news_list2{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

.news_list2 li{
	width:48%;
	overflow:hidden;
	background:#fff;
	border:1px solid #BBDC65;
	border-radius:20px;
	margin-bottom:53px;
}

.news_list2 li .img{width: 100%;height: 20vw;max-height: 200px;}

.news_list2 li .img img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.news_list2 li .text_area{
	padding:20px;
}

.news_list2 li .text_area .dacate{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	margin-bottom:4px;
}

.news_list2 li .text_area .dacate .n_cate{
	margin-bottom:4px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#46B024;
	color:#fff;
	padding: 3px 20px;
	border-radius: 15px;
	margin-right: 24px;
	min-width: 104px;
	font-size: 1.6rem;
}

.news_list2 li .text_area .dacate .date{
	margin-bottom:4px;
}


.news_list2 li .text_area .title1{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-weight:700;
	margin-bottom:12px;
}


.news_list2 li .text_area .text1{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom:12px;
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	line-height:2;
}

.news_list2 li .text_area .next_text{
	font-size: clamp(1.3rem, 1.6vw, 1.5rem);
	color:#8E8E8E;
}

.cate_area{
	margin-bottom:120px;
}

.cate_area:last-child{
	margin-bottom:0px;
}

.cate_area .title1{
	font-weight: 700;
	font-size: clamp(1.8rem,2vw,2.6rem);
	margin-bottom:16px;
}

.cate_list li{
	padding:12px 0;
	border-bottom:1px solid #D9D9D9;
}

.cate_list li a{
	color:#187441;
}

.det_title_area{
	margin-bottom:52px;
}

.det_title_area .title1{
	font-size: clamp(2.4rem,4vw,3.6rem);
	line-height:1.3611;
	margin-bottom:25px;
}

.det_title_area .dacate{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	margin-bottom:4px;
}

.det_title_area .dacate .n_cate{
	margin-bottom:4px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#46B024;
	color:#fff;
	padding: 3px 20px;
	border-radius: 15px;
	margin-right: 24px;
	min-width: 104px;
	font-size: 1.6rem;
}

.det_title_area .dacate .date{
	margin-bottom:4px;
}

.page_links{
	display:flex;
	justify-content:space-between;
	align-items:center;
	max-width: 814px;
	margin: 60px auto 0;
}

.link_btn{
	display:flex;
	align-items:center;
	border:2px solid #BBDC65;
	height:68px;
	width: 40%;
	max-width:272px;
	border-radius:20px;
	padding-left: 6%;
	font-weight: 700;
	position: relative;
	transition: .4s;
}

.link_btn.next{
	width:25%;
	max-width:146px;
	padding-left: 4.6%;
}

.link_btn.back{
	width: 28%;
	max-width:146px;
	padding-left: 0;
	justify-content: flex-end;
	padding-right: 6%;
}

.link_btn:before{
    position: absolute;
    content: "";
    width: 31px;
    height: 31px;
    background: url(./img/common/link_next.svg) no-repeat center;
    background-size: contain;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .4s;
}

.link_btn.back:before{
    background: url(./img/common/link_back.svg) no-repeat center;
    background-size: contain;
    right:auto;
	left:15px;
}

.link_btn:hover:before{
	right:8px;
}


.link_btn.back:hover:before{
	right:auto;
	left:8px;
}

.link_btn.cen{
	margin:0 auto;
}

.works01{
	padding:120px 0 110px;
}

.works_cate{
	display:flex;
	flex-wrap:wrap;
	margin-bottom:80px;
}

.works_cate li{
	width: 20.584%;
	margin-right:5.888%;
	margin-bottom:20px;
	border-radius:50px;
}


.works_cate li:nth-child(4n+4){
	margin-right:0;
}

.works_cate li a{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:40px;
	height:60px;
	color:#fff;
}

.wcate1{
	background:#064E40;
}

.wcate2{
	background:#2A651B;
}

.wcate3{
	background:#46b024;
}

.wcate4{
	background:#9eb51f;
}

.wcate5{
	background:#d39548;
}

.wcate6{
	background:#d93b0b;
}

.wcate7{
	background:#953a1f;
}

.works_list1.works_list2 li{
	margin-bottom:55px;
	border:1px solid #BBDC65;
	background:#fff;
	border-radius:20px;
	overflow:hidden;
	padding-bottom: 54px;
}

.works_list1.works_list2 li .img{
	max-height: 200px;
	height: 17vw;
}

.works_list1.works_list2 li .img img{
	border-radius:0;
}

.works_list1.works_list2 .cate_area{
	padding: 0 2.5%;
}

.works_list1.works_list2 .cate_area .cate1 {
    margin-right: 8px;
}


.works_list1.works_list2 .title1{
	padding: 0 2.5%;
}


.works_cate2{
	display:flex;
	flex-wrap:wrap;
	margin-bottom: 32px;
}

.works_cate2 li{
	width: 24%;
	margin-right: 20px;
	margin-bottom:20px;
	border-radius:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:40px;
	height:60px;
	color:#fff;
	max-width: 247px;
}


.works_cate2 li:nth-child(4n+4){
	margin-right:0;
}

.det_works_title{
	margin-bottom:37px;
	font-size: clamp(2.4rem,4vw,3.4rem);
	line-height:1.441;
	font-weight:700;
}

.works_flex1{
	margin-bottom:80px;
}

.works_flex1 .img{
	max-width:560px;
	width:48%;
}

.works_flex1 .text_area{
	max-width:560px;
	width:48%;
}

.works_title1{
	font-weight: 700;
	font-size: clamp(2rem,2vw,2.6rem);
	background:#E5F3C6;
	padding:14px 43px;
	line-height: 1.423;
}

.works_flex1 .text_area .works_title1{
	max-width:max-content;
}

.works_flex1 .text_area .text1{
	font-size: clamp(1.5rem, 1.6vw, 1.6rem);
	line-height:2;
	margin-top:28px;
}

.works01 .comp_list1{
	margin-bottom:100px;
}

.works_div1{
	margin-top:80px;
}

.works_div1 .works_title1{
	margin-bottom:30px;
}

.bfaf_list{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom: 30px;
}

.bfaf_list li{
	max-width:510px;
	width: 43%;
}

.bfaf_list li.cen{
	width: 9.5%;
}

.thanks_div{
	text-align:center;
	padding:120px 0;
}


.thanks_div .text1{
	line-height:2.222;
}

.thanks_div .btn1{
	margin:40px auto 0;
}


.nokiji{
	margin:30px 0;
}

.cont_div.cont_div2{
	margin: 0 auto 86px;
}

/*-- 固定ここまで --*/



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1921px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1921px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


	

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1500px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	
.content03 .flex .text_area .title_div .fuki_text{
	left: 75%;
	width: 45%;
}

.content03 .flex .text_area .title_div .fuki_text:before{
	right: 95%;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1500px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
	
	

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1400px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	
.cov-text .img1{
	right: -6%;
	width: 34%;
}


.cov-btn .fuki_text{
	height:55px;
}

.cov-btn .btn1{
	height: 70px;
}

.cov-text{
	bottom: -7%;
	padding: 2% 1%;
}

.menuBtn{
	height: 120px;
}

#cover{
	margin: 120px auto 0;
}


.slider_btn div{
	width:70px;
}

.cov-btn .fuki_text:before{
	width: 29px;
	height: 30px;
	top: 73%;
}

#art_cover {
    margin-top: 120px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1400px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1200px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.cov-tel .left a img {
    margin-right: 6px;
    width: 10px;
}

.headerUl{
	width: 80px;
}

    .menuBtn {
        height: 100px;
        border-radius: 0 0 0 40px;
    }

.headerScroll .menuBtn{
	height:80px;
}

.pc_nav .hd_link_btn1,
.pc_nav .hd_link_btn2{
	height:50px;
}

.gnav{
	max-width:500px;
}

.gnav__wrap{
	max-width:500px;
}

    #cover {
        margin: 100px auto 0;
    }

    .content03 .flex .text_area .title_div .fuki_text {
        bottom: 0;
        font-size: clamp(1.2rem, 1.4vw, 2rem);
        width: 40%;
        left: 86%;
    }

.content03 .flex .text_area .title_div .fuki_text:before{
	top: 7%;
	right: 94%;
}

    #art_cover {
        margin-top: 100px;
        height: 340px;
    }

.contact_tb th span {
    margin-right: 12px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1200px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
	


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1000px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

img {
	width: auto;
	max-width: 100%;
	height: auto;
}



/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
    .cov-btn .fuki_text {
        height: 45px;
    }

    .slider_btn div {
        width: 50px;
    }

.cov-in {
    width: 95%;
}

.mv_slider_area{
	height:55vw;
}

.mv_sld {
    height: 55vw;
}

.cov-tel{
	min-width: 470px;
}

.cov-tel .left a{
	font-size: clamp(2.4rem, 2.6vw, 4.6rem);
}

.pc_nav{
	display:none;
}

.cov-btn{
	width: 49%;
}

.cov-btn .btn1{
	height:60px;
}

.cov-text{
	width: 47%;
	font-size: clamp(1.5rem, 1.5vw, 2.4rem);
}

.cov-tel .right{
	padding: 1%;
}

.co1_list li{
	margin-top: 100px;
}

.co1_list li .img{
	top: -75px;
	width: 100%;
	max-width: 100px;
}
	
.co2_div .title1{
	margin:0 auto 0px;
	width: 100%;
	text-align: center;
}

.content03 .flex .img{
	width: 45%;
}

.content03 .flex .text_area{
	width: 53%;
}

.content03 .flex .text_area .title_div .fuki_text{
	width: 34%;
	height: 70px;
	bottom: 15px;
	border-radius: 20px;
	left: 86%;
}

.content03 .flex .text_area .title_div .fuki_text:before{
	right: 90%;
}

.content03 .flex .text_area .title_div .fuki_text:after{
	border-radius: 17px;
}

.cont_list li a .img {
    min-height: initial;
	width:70px;
	height:70px;
}

.cont_list li a .img img{
	width:100%;
	height:100%;
}


.cont_list li:last-child a .img {
    min-height: initial;
	width:60px;
	height:50px;
}


.co6_div2 .text_area{
	width: 53%;
}


.co6_div2 .img{
	width: 45%;
}

.ft_list1 li .text1{
	font-size: 1.4rem;
	width: 65px;
	margin-right: 8px;
}


footer .flex .left{
	width: 32%;
}

footer .flex .right{
	width: 67%;
}


.article01 .ma1920 .flex .img{
	width: 49%;
}

.article01 .ma1920 .l_inner .flex .img img{
	border-radius:0 20px 20px 0;
}

.article01 .ma1920 .r_inner .flex .img img{
	border-radius:20px 0 0 20px;
}

.article01 .ma1920 .flex .text_area{
	width: 49%;
}

.insu01_list1 li .num {
    width: 61px;
    height: 61px;
    margin-right: 16px;
    font-size: 3.4rem;
}


.insu02_list1{
	flex-wrap:wrap;
}

.insu02_list1 li{
	width: 48%;
	max-width: initial;
	margin-top:4%;
}

.insu02_div1 .text {
    margin-bottom: 0px;
}
	
.btn_flex {
    margin: 20px auto 0;
	flex-direction:column;
}

.btn_flex .btn1 {
    width: 100%;
	margin:20px auto 0;
}

.renov02_list1 li{
	width:48%;
}

.renov02_list1 li .text_area .title1 {
    font-size: clamp(1.7rem, 2.4vw, 2rem);
}
	
.renov03_list1 > li{
	padding:30px 0;
}

    .renov03_list2 li:before {
        top: 13px;
        width: 8px;
        height: 8px;
    }


.method01_list1 li .num{
	top: -40px;
	border: 3px solid #BBDC65;
	width: 80px;
	height: 80px;
}

.method01_list1 li .num .step{
	font-size:1.6rem;
}

.method01_list1 li .num .text1{
	font-size: 3rem;
}


.method01_list1 li {
    border: 3px solid #BBDC65;
    height: 130px;
    width: 32.5%;
    padding: 40px 0.5% 8px;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.method01_list1 {
    margin-top: 70px;
}

.method01_list1_text {
    margin-top: 16px;
}

.subsi02_list1 li .left {
    width: 150px;
    height: 45px;
    font-size: 2rem;
    margin-right: 20px;
}

.news_list2 li .text_area .dacate .n_cate {
    margin-right: 12px;
    font-size: 1.4rem;
    min-width: 80px;
    padding: 3px;
}

.cate_area {
    margin-bottom: 50px;
}
	
.works_list1 li {
    width: 32%;
    margin-right: 2%;
}

.cate1{
	font-size:1.4rem;
}

.works_cate li {
    width: 24%;
    margin-right: 1.3333%;
}	

.cont_div.cont_div2 {
    margin: 0 auto 40px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1000px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 850px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	
    .content03 .flex .text_area .title_div .fuki_text {
        bottom: -25px;
        left: 87%;
    }

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 8500px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc {
	display: none;
}

.sp {
	display: block;
}

nav li a {
	font-size: 1.5rem;
}


a[href*="tel:"] {
	pointer-events: initial;
	cursor: pointer;
	text-decoration: none;
	}

/* ヘッダー
----------------------------------------------------------- */


.pc_nav{
	display:none;
}

.hLogo{
	min-width:135px;
	width:40%;
}

html{
	padding:10px;
}

header{
	width: calc(100% - 20px);
	left: 0;
	padding-left: 10px;
	border-top: 10px solid #46b023;
}

.headerUl{
	width:60px;
}

    .headerScroll .menuBtn {
        height: 70px;
    }
	
.menuBtn{
	height: 76px;
	border-radius: 0 0 0 30px;
}

.menu-trigger{
	width: 31px;
	height: 19px;
	margin-bottom: 10px;
}

.menu-trigger span{
	width:31px;
}

.menu-trigger span:nth-of-type(2){
	top: 8px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(8.5px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-8.5px) rotate(45deg);
}

.gnav{
	top:10px;
	max-width: initial;
	transform: translateX(768px);
	width: calc(100% - 20px);
	right: 10px;
	border-radius: 10px 10px 0 0;
}

.gnav__menu__item a{
	margin: 0 auto 20px;
	font-size: 1.5rem;
}

.gnav__menu{
	padding:30px 0 60px;
}


.hd_link_btn1{
	height:50px;
	font-size:1.5rem;
}

.hd_link_btn2{
	max-width:134px;
	height:51px;
	font-size:1.5rem;
}

a.tel_btn1{
	font-size:2.4rem;
	max-width: 204px;
	height: 50px;
}

.gnav__menu__item2 a.tel_btn1 img{
	width:9px;
}

.gnav__menu .hd_link_btn1{
	margin-top:13px;
}

    .cov-in {
        width: 94.37%;
    }

.cov-tel{
	width: 100%;
	position:initial;
	min-width: initial;
	margin-bottom: 16px;
}

.cov-tel .left{
	display:none;
}

.cov-tel:before,
.cov-tel:after{
	display:none;
}

.cov-tel .right{
	width:100%;
	font-size: 1.5rem;
	text-align: center;
	padding: 10px 0;
	font-weight: 400;
}
	
.cov-div{
	position:initial;
	width: 100%;
	margin: 30px auto 15px;
	margin: 15px auto 15px;
}

.cov-text{
	width: 100%;
	padding: 20px 35px 20px 0;
	position: relative;
	bottom: initial;
	left: initial;
	font-size: clamp(1.5rem, 2.5vw, 2.4rem);
	margin-top: 20px;
}

.cov-btn{
	position: relative;
	bottom: initial;
	right: initial;
	width: 94.37%;
	margin: 13px auto 0;
	bottom: 1%!important;
	max-width: 400px;
	left: auto;
	right: 1.7%;
}

.mv_slider_area{
        height: 58.67vw;
}

    .mv_sld {
        height: 58.67vw;
    }

.cov-text .text2 {
    margin-top: 11px;
}

    .cov-text .img1 {
        right: 3%;
        bottom: 35%;
        max-width: 150px;
    }

.cov-btn .fuki_text{
	height: 49px;
	max-width: 233px;
	font-size: clamp(1.4rem, 1.8vw, 2rem);
	bottom: 0;
	height: 40px;
}

    .cov-btn .fuki_text:before {
        width: 24px;
        height: 30px;
        top: 73%;
        right: auto;
        left: 9%;
    }

    .cov-btn .btn1 {
        height: 69px;
        font-size: 1.6rem;
        font-weight: 500;
        border-radius: 10px;
        font-size: 1.4rem;
        height: 50px;
    }

.btn1:before{
	width: 23px;
	height: 23px;
	right: 6px;
}


.btn1:hover:before{
	right:2px;
}

#cover:before{
	height: 66%;
	bottom: 10px;
}

body{
	border-radius:10px 10px 0 0;
}

#cover{
	padding:0;
}

.content01 {
    padding: 75px 0 85px;
}

.mainTit .en_tit{
	margin-top:13px;
	line-height: 1.2857;
}

.co1_list{
	flex-direction:column;
	margin-top:10px;
}

.co1_list li{
	width:100%;
	padding: 29px 2% 21px;
	font-size: clamp(2rem,4vw,2.8rem);
	margin:112px auto 0;
	min-height: 180px;
}

.co1_list li .img{
	position:absolute;
	top:-87px;
	margin:0 auto;
	width:100%;
	max-width:113px;
}

.co1_list li .text1 .unli {
    font-size: clamp(3rem, 4vw, 4rem);
}

.co1_list li .text1 .small {
    font-size: clamp(1.5rem, 4vw, 1.7rem);
}

.inner {
    width: 94.37%;
}

.content02 .flex {
    margin: 11px auto 30px;
	flex-direction:column;
}

.co2_div {
    width: 100%;
    max-width: 580px;
    padding: 34px 0 30px;
    margin:24px auto 0;
}

.content02{
	padding:65px 0;
}

.co2_list1 li{
	font-size: clamp(1.4rem, 4vw, 2.6rem);
	padding: 19px 0 16px;
	margin-top: 12px;
}

.co2_list1 li span {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

co2_list1 li span .big {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.co2_list1{
	width: 80%;
	margin: 11px auto 0;
}

.content02 .text {
    line-height: 40px;
}

.content02 .text1{
	margin:36px auto 0;
	padding: 20px 5%;
}

.content03 .ma1920{
	padding:85px 0;
}

.l_inner, .r_inner{
	width:100%;
}

.content03 .flex{
	flex-direction:column;
}

    .content03 .flex .img {
        width: 97.187%;
        margin-right: auto;
    }

.content03 .flex .text_area .mainTit .en_tit{
	margin: 13px 0 40px;
}

.content03 .flex .text_area .title_div .fuki_text{width: 100%;position: relative;left: initial;bottom: initial;max-width: initial;border-radius: 30px;font-size: 1.6rem;font-weight: 700;height: 56px;margin-bottom: 22px;}

.content03 .flex .text_area .title_div .fuki_text:after{
	border-radius:30px;
}

.content03 .flex .text_area .title_div{
	margin-bottom:24px;
}

.content03 .flex .text_area .text1{
	margin-top:22px;
	font-size: clamp(1.5rem,1.6vw,1.8rem);
	line-height: 2;
}

.content03 .flex .text_area .title_div .title1{
	font-size: clamp(1.8rem,3vw,2.6rem);
}

.content03 .flex .text_area .title_div .title1 .green2{
	font-size: clamp(2.2rem,4vw,3.4rem);
}


.mainTit{
	font-size: clamp(2.4rem,4vw,4rem);
}


.mainTit .unli,
.mainTit .big{
	font-size: clamp(2.8rem,4.4vw,4.6rem);
}


.content04{
	padding:85px 0 60px;
}

.co4_list1 li {
    width: 48%;
    max-width: initial;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    padding: 17px 0 15px;
    margin-top: 12px;
}

.co4_list1 li span {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.co4_list1 li .img{
	width: 55.42%;
	margin: 0 auto 9px;
}

.content04 .flex{
	margin: 32px auto 0;
	flex-direction: column-reverse;
}



.content04 .flex .img{
	max-width:209px;
	width: 100%;
	margin:0 auto;
}

.content04 .flex .fuki_text{
	max-width: initial;
	width: 100%;
	height: initial;
	padding: 20px 7%;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	margin: 0 auto 19px;
}


.content04 .flex .fuki_text:before{
	width: 33px;
	height:27px;
	background:url(./img/top/co4_fuki_sp.svg)no-repeat;
	background-size:contain;
	right: 19%;
	top: 94%;
}

.content04 .flex .fuki_text .unli{
	font-weight:700;
	font-size: clamp(1.6rem,3vw,2.4rem);
}

.content05 .top_tri{
	margin:0 auto 50px;
}

.co5_div1 .text_area{
	width: 100%;
	padding: 28px 29px 36px;
}

.co5_div1 .text_area .title{
	margin-bottom: 16px;
}

.co5_div1 .text_area .title .small{
	display:block;
}

.co5_div1 .text_area .text1{
	line-height:2;
	margin-bottom: 26px;
}

.btn1{
	height:60px;
	font-size: 1.5rem;
	padding: 0 25px;
}

.co5_div1{
	max-width: 570px;
	width: 100%;
	margin: 0 auto;
}

.co5_div1 .bg_img{
	height:496px;
}

.content05 .flex{
	flex-direction:column;
}

.co5_div2 {
    width: 100%;
    margin: 35px auto 0;
}

.co5_div2 .top_cont .title1{
	padding: 42px 0 0px;
	line-height: 1.4285;
}

.co5_div2 .text_area {
    padding: 25px 0 123px;
}

.co5_div2 .text_area .title2 {
    margin-bottom: 14px;
}

.co5_div2 .text_area .text1 {
    line-height: 2;
    font-size: 1.5rem;
}

.content05{
	padding:0 0 75px;
}

.fuki_area .fuki_text{
	max-width:233px;
	width:100%;
	height: 60px;
	bottom: 0;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
}


.fuki_area .fuki_text .unli{
	font-size:2rem;
}

 .fuki_area .fuki_text:before{
	width:24px;
	height:20px;
	right: auto;
	left: 8%;
	top: 85%;
}

.fuki_area .btn1{
	height:68px;
	font-weight: 500;
	border-radius: 10px;
	padding: 0 13px;
}

.fuki_area{
	margin:0 auto 5px;
}

.cont_list{
	flex-direction:column;
}

.cont_list li{
	width:100%;
	margin:25px auto 0;
}

.cont_list li a{
	height:125px;
	font-size:2rem;
}


.cont_list li a .img{
	height:initial;
	min-height:initial;
}

.cont_list li:nth-child(1) a .img{
	width:48px;
	margin:0 auto 8px;
}

.cont_list li:nth-child(2) a .img{
	width:50px;
	margin:0 auto;
}

.cont_list li:nth-child(3) a .img{
	width:14px;
	margin:0 auto 4px;
}

.cont_list li a .text1 {
    margin-top: 0px;
    text-align: center;
}

.cont_list li:nth-child(3) a .text1 {
    font-size: 1.6rem;
}

.cont_list li a .text1 span{
	font-size: clamp(3rem, 3vw, 4.6rem);
}

.cont_div{
	margin:40px auto 0;
	padding: 18px 21px;
}

.cont_div .text1 .unli{
	display:block;
	max-width:max-content;
}

.cont_div .text2 {
    line-height: 1.4285;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
	margin:14px auto 0;
}

.contact_area {
    padding: 75px 0;
}

.content06 {
    padding: 75px 0;
}

.content03 .flex .text_area{
	width: 94.37%;
	margin: 24px auto 0;
}

.content03 .flex .text_area .title_div .fuki_text:before{
	right: 90%;
	background: url(./img/top/co3_fuki_sp.svg) no-repeat;
	background-size: contain;
	width: 28px;
	height: 34px;
	top: 76%;
	left: 5%;
}

    .content06 .mainTit .unli{
        font-size: clamp(2.6rem, 4.4vw, 4.6rem);
    }

.co6_div2 {
    padding: 40px 0 0;
}

.co6_div2 .flex{
	flex-direction:column;
}

    .co6_div2 .text_area {
        width: 94.37%;
        margin: 0 auto 40px;
    }

.co6_div2 .text_area .text1{
	margin-bottom:20px;
}


.co6_div21{
	margin: 36px auto 0;
	padding: 21px 15px;
}

.co6_list1 li {
    margin-top: 16px;
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}

.co6_list1 li:before{
	top:7px;
}

.co6_div2 .img{
	width: 97.187%;
	margin-left: auto;
	max-width:initial;
}

.co6_div3 {
    padding: 60px 0 0;
}

.co6_list2 li {
    margin-top: 20px;
    width: 48%;
    padding: 17px 0 18px;
}


.co6_list2 li .img{
	width: 54.11%;
	margin:0 auto;
}

.co6_list2 li .text1 {
    margin-top: 8px;
    font-size: clamp(1.4rem, 2.4vw, 2.3rem);
}

.co6_list2 li .text1 span {
    font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.co6_div4 {
    padding: 60px 0 0;
}

	.over_sld{
		overflow-x:scroll;
		margin-top:20px;
	}

.sld_area{
	width:1070px;
}

.top_tb th{
	height:82px;
	font-size:2.2rem;
	font-weight:700;
}

.top_tb td{
	height:73px;
	font-size: 1.5rem;
	font-weight: 500;
}

.co6_div4 .over_sld .text {
    margin:0;
    padding:18px 0;
    font-size: clamp(1.4rem, 1.6vw, 1.8rem);
}

.content07 {
    padding: 60px 0 100px;
	position:relative;
}

.top_title_area1 {
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.top_title_area1 .btn1{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	width: 94.37%;
}

.works_list1 li {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
}

.works_list1 li .img {
    height: 44.534vw;
    margin-bottom: 15px;
}

	.works_list1.works_list2 li .img {
    height: 44.534vw;
}

.cate1{
	font-size:1.4rem;
}

.cate2{
	font-size:1.4rem;
}

.works_list1 .cate_area{
	margin-bottom:12px;
}

.works_list1 li:last-child{
	margin-bottom:0;
}
	
.content08 {
    padding: 100px 0;
	position:relative;
}

.top_title_area1 .mainTit{
	text-align:center;
}

.news_list1{
	margin-top:-20px;
}

.news_list1 li {
    max-width: initial;
    width: 100%;
    margin-top: 50px;
	flex-direction:column;
}

.news_list1 li .img{
	width:100%;
	max-width: initial;
	height: 44.534vw;
	max-height: initial;
	margin-bottom: 19px;
}

.news_list1 li .text_area {
    max-width: initial;
    width: 100%;
}

.news_list1 li .text_area .date{
	margin:0 0 14px;
}

.news_list1 li .text_area .title1{
	margin:0 0 12px;
}

.news_list1 li .text_area .text1{
	font-size:1.5rem;
}

.news_list1 li .text_area .text2{
	font-size:1.5rem;
}

.content09{
	padding:100px 0 85px;
}

footer{
	padding:48px 0 0;
}

footer .flex1{
	flex-direction:column;
}

footer .flex .left {
	width: 100%;
	max-width:initial;
	margin:0 auto 40px;
}

footer .flex .right {
	width: 100%;
max-width:initial
}

footer .logo{
	max-width:191px;
	margin:0 auto 26px;
}

    .ft_list1 li .text1 {
        font-size: 1.4rem;
        width: 78px;
        margin-right: 10px;
        height:27px;
    }

.tel_btn2{
	font-size:2.3rem;
}

.tel_btn2 img {
	width:8px;
}

footer .flex .right .flex2{
	flex-wrap:wrap;
}

.ft_list2{
	width:50%;
}

footer .flex .right .flex2 .ft_list2:nth-child(1){
	order:1;
}


footer .flex .right .flex2 .ft_list2:nth-child(2){
	order:3;
	width:100%;
}


footer .flex .right .flex2 .ft_list2:nth-child(3){
	order:2;
}

.ft_list2 li:before{
	top:7px;
}

.ft_list2 li{
	margin-bottom:25px;
}

footer .flex .right .flex2 .ft_list2:nth-child(2) li{
	margin-bottom:14px;
}

.copyright{
	margin:35px auto 0;
	text-align: center;
	padding: 29px 0 19px;
}

    #art_cover {
        margin-top: 76px;
        height: 260px;
    }

.company01 {
    padding: 80px 0;
}

.company01 .img {
    margin: 30px auto;
}

.company01 .text1 {
    margin-top: 24px;
    line-height: 1.8;
}

.company01 .text2 span{
	margin-right:16px;
}

.company02 {
    padding: 80px 0;
}

.comp_list1 li .left{
	width: 100%;
	padding: 16px;
}

.comp_list1 li .right{
	padding: 16px;
}

.map{
	height:200px;
}

.comp_list1 li{
	flex-direction:column;
}

.company02 .comp_list1 {
    margin: 30px 0 0;
}

.article01 .ma1920 .flex{
	flex-direction:column-reverse;
}

.article01 .ma1920 .r_inner .flex{
	flex-direction:column;
}

.article01 .ma1920 .flex .img{
	width: 97.187%;
	margin-right: auto;
}
	
.article01 .ma1920 .r_inner .img{
	margin-left: auto;
	margin-right: 0;
}

.article01 .ma1920 .flex .text_area{
	width: 94.37%;
	margin: 0px auto 24px;
}


.article01 {
    padding: 80px 0;
}

.art_cov .text {
    margin-top: 10px;
}

    .insu01_list1 li .num {
        width: 50px;
        height: 50px;
        margin-right: 12px;
        font-size: 2.6rem;
    }

.insu01_list1 li {
    padding: 20px 0;
}


.comp_list1.half li .left{
	width: 100%;
	min-height: initial;
}

.comp_list1.half li .right{
	padding-left: 5%;
	padding-right: 5%;
	min-height: initial;
}

.insu02 .flex{
	margin:30px auto 0;
	flex-direction:column;
}

.insu02_div{
	max-width:initial;
	width:100%;
	margin-bottom:40px;
}
	
.insu02_div:last-child{
	margin-bottom:0;
}

.insu02_list1 li {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
}


.insu02_list1 li .text1 .red{
	font-size: clamp(2.4rem,4vw,2.6rem);
}

.insu02_list1 li .text1 .red .small{
	font-size: clamp(1.5rem, 2.4vw, 1.8rem);
}

.insu03 {
    padding: 80px 0;
}

.renov01_list li .text1{
	margin-bottom:20px;
}


.renov02_list1 li{
	width:100%;
}
	
.renov02_list1 li .text_area .title1 {
    font-size: clamp(1.7rem,4vw, 2rem);
	margin-bottom:24px;
}

.renov02_list1 {
    margin-bottom: 40px;
}

.renov02 {
    padding: 80px 0;
}



.renov01_list{
	margin: 0px auto 0;
	flex-direction:column;
}

.renov01_list li{
	width:100%;
	margin: 40px auto 0;
}

.renov03 {
    padding: 80px 0;
}


.renov03_list1 > li{
	flex-direction:column;
}

.renov03_list1 > li .text_area{
	max-width:initial;
	width:100%;
}

.renov03_list1 > li .img_area{
	max-width:570px;
	width:100%;
	margin: 40px auto 0;
}

.renov03_list2 li {
    padding-left: 12px;
    line-height: 1.5;
    margin-top: 8px;
}

.renov03_list2 li:before{
	top: 7px;
	width: 8px;
	height: 8px;
}

.qanda01 {
    padding: 80px 0 0;
}

.qanda_list {
    margin: 30px auto 0;
}

.qanda01 .text1 {
    padding: 30px 0 80px;
    line-height: 1.8;
}

.qanda_list li {
    padding: 16px 10px;
}


.privacy01{
	padding:80px 0;
}

.privacy01 dd ul li {
    margin-bottom: 20px;
}

.privacy01 dd ul li:before {
    width: 8px;
    height: 8px;
    top: 14px;
}

.sitemap01 {
    padding: 80px 0;
}


.sitemap01 .flex{
	flex-wrap:wrap;
}
	
.sitemap01 .left{
	max-width: initial;
	width: 100%;
	margin-bottom: 30px;
}

	.sitemap01 .left .img{
		max-width: 279px;
		width: 100%;
	}

.sitemap01 .center{
	max-width: initial;
	width: 48%;
}

.sitemap01 .right{
	max-width: initial;
	width: 48%;
}

.sitemap_list{
	margin-bottom: 24px;
}

.sitemap_list li.sub {
    margin-top: 24px;
    padding-left: 12%;
}

.sitemap_list li.child {
    margin-top: 16px;
    padding-left: 12%;
}

.method01_div {
    padding: 60px 0 0;
}

.method01_list1{
	flex-direction:column;
	margin: 0;
}

.method01_list1 li{
	width:100%;
	margin: 60px auto 0;
	height: 115px;
}

.method01_list1:before{
	height:90%;
	width:5px;
}

.method_flex{
	flex-direction:column;
}

.method_flex .text_area{
	max-width:initial;
	width: 100%;
}

.method_flex .img_area{
	max-width:initial;
	width: 100%;
	margin:0 auto;
}

.method_flex .img_area .img{
	width:100%;
	margin:0 auto;
}

	
.method07_div1{
	margin-bottom:60px;
}

.method07_div1 .flex{
	flex-direction:column;
}
	
.method07_div1 .flex .text_area{
	max-width: initial;
	width: 100%;
}

.method07_div1 .flex .img_area{
	max-width: 525px;
	width: 100%;
	margin:24px auto 0;
}

	.contact_tb th,
	.contact_tb td{
		display:block;
		width:100%;
		padding: 20px;
	}
	
.contact_tb th {
	border-bottom:none;
	padding-bottom:0px;
}


.contact01 .text1{
	margin-bottom:40px;
}

.contact01 .text2{
	margin-bottom:40px;
}

.contact01 {
    padding: 80px 0;
}

.fuki_area.cont_01_div .fuki_text {
    height: 46px;
	max-width:150px;
}

.cont_01_div.fuki_area{
	max-width:350px;
}

.content06.subsi01 {
    padding: 80px 0;
}

.subsi01 .logoimg{
	margin-bottom:30px;
}

.subsi02_list1 li{
	margin:30px 0 0;
	flex-direction:column;
	align-items:flex-start;
}

.subsi02_list1 li .left{
	margin:0 auto 10px;
}

.subsi02_list1 {
    padding: 0px 0 0;
}

.subsi03_div{
	flex-direction:column;
}

.subsi03_div .left{
	width: 100%;
	padding:20px 0;
}

.subsi03_div .right{
	padding: 10px 20px;
	width: 100%;
}

.subsi03_div .right .text2 {
    line-height: 1.8;
}

.subsi03_div .right .text3:before{
	top:8px;
	width:8px;
	height:8px;
}

.content06.subsi04 {
    padding: 80px 0 ;
}

.subsi03 {
    padding: 80px 0;
}


.news01{
	padding:80px 0;
}

.news01 .news_flex {
	flex-direction:column;
}

.news01 .flex .main_cont{
	width: 100%;
	max-width:initial;
}

.news01 .flex .side_cont{
	width: 100%;
	max-width:initial;
	margin-top:40px;
}

.cate_area {
    margin-bottom: 30px;
}
	
.news_list2 li .img {
    height: 27vw;
}

.pagination-list .page-numbers {
    font-size: 2rem;
    width: 32px;
    height: 32px;
}

.works_list1{
	margin-bottom:40px;
}

.works01 {
    padding: 80px 0;
}

.works_cate2 li,
.works_cate li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 10px;
}

.works_cate2 li:nth-child(4n+4),
.works_cate li:nth-child(4n+4){
	margin-right:2%;
}

.works_cate2 li:nth-child(3n+3),
.works_cate li:nth-child(3n+3){
	margin-right:0%;
}

.works_cate{
	margin-bottom:40px;
}

.works_flex1{
	margin-bottom:40px;
	flex-direction:column-reverse;
}

.works_flex1 .img{
	width:100%;
}

.works_flex1 .text_area{
	max-width:initial;
	width:100%;
}

.works_title1{
	padding:8px 20px;
}

.works01 .comp_list1 {
    margin-bottom: 0px;
}
	
.works_div1 {
    margin-top: 60px;
}


.thanks_div{
	padding:80px 0;
}


.thanks_div .text1{
	line-height:1.8;
}

.thanks_div .btn1{
	margin:30px auto 0;
}

.unli:before{
	height:35%;
}


	.mainTit .unli:before {
    height: 40%;
}

.mwform-radio-field.horizontal-item{
	display:flex;
	margin:0 0 6px!important;
}


.tb_flex{
}

.tb_flex .mwform-checkbox-field.horizontal-item{
	margin: 0 0 10px;
	width: 100%;
}

.works_cate li a{
	height:50px;
}

.cont_div.cont_div2 {
    margin: 0 auto 0px;
}
	
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 591px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc2, .pcTel {
	display: none;
}

.sp2 {
	display: block;
}

.spTel  {
	display: inline;
}


/*-- テーブル --*/

table {
	width: 100%;
}


/*-- ページトップ --*/

#pageTop {
	display: none !important;
}


/* フッター
----------------------------------------------------------- */

.sp nav {
	margin: 0 auto;
	background: #329026;
}


/* トップページ
----------------------------------------------------------- */

#main {
}


    .cov-text .img1 {
        right: -6%;
        width: 37.612%;
        bottom: 45%;
    }

    .content02 .text1 {
        padding: 20px 11%;
    }

.sitemap01 .center{
	width: 100%;
	margin-bottom: 24px;
}

.sitemap01 .right{
	width: 100%;
}

    .sitemap_list li.sub {
        margin-top: 16px;
        padding-left: 8%;
    }

    .sitemap_list li.child {
        margin-top: 16px;
        padding-left: 8%;
    }

.news_list2 li {
    width: 100%;
    margin-bottom: 40px;
 }

.news_list2 li .img {
    height: 50vw;
}

    #art_cover {
        height: 190px;
    }

.page_links{
	flex-wrap:wrap;
	max-width:300px;
	margin:40px auto 0;
}

.link_btn{
	width:100%;
	max-width:initial;
}

.link_btn.cen{
	order:1;
	margin-bottom:20px;
}
	
.link_btn.next{
	width:45%;
	max-width:initial;
	order:3;
}

.link_btn.back{
	width: 45%;
	max-width:initial;
	order:2;
}

.works_cate2,
.works_cate{
	justify-content:space-between;
}
.works_cate2 li,
.works_cate li {
    width: 49%;
    margin-right: 0%!important;
    font-size: 1.2rem;
}


.cov-btn{
	right: initial;
	max-width: initial;
}

	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 591px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 414px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 320px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 320px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */