@charset "utf-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/*メインビジュアル*/

/*-------------------------------------*/
/*	下層ページ*/
/*-------------------------------------*/
#sub_ttl h2 span{
	font-size: 28px;	
	display: block;
	color: var(--main-green);
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",sans-serif;
	margin-top: 10px;
}
#sub_ttl h2{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 362%;
}
/*type01*/
.subttl_type01{
	padding-top: 60px;
	position: relative;
}
.subttl_type01::before {
	content: "";
	width: 100%;
	height: 140px;
	background-color:var(--main-beige);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.subttl_type01::after {
	content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 140px;
  background-image: url("../images/bg_wave01-b.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
	z-index: -1;
}
.subttl_type01 #sub_ttl{
	margin-bottom: 70px;
}

/*sub_img*/
#sub_img{
	position: relative;
}
#sub_img img{
	width: 100%;
}
#sub_img h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
		max-width: 1200px;
		width: 100%;
		padding: 0 15px;
		margin: 0 auto;
}
#sub_img h2 span{
	font-size: 28px;	
	display: block;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",sans-serif;
	margin-top: 10px;
}
#sub_img h2{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 362%;
	color: #FFFFFF;
}
.txt_box p{
	margin-bottom: 1.5em;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
		
/* 会社情報ページ下共通メニュー */
#f_link hr{
	border-top: 1px solid #AC9590;
	margin: 40px 0;
}
h2.page_link{
	border-bottom: 1px solid #AC9590;
	padding-bottom: 10px;
	line-height: 1.5;
	margin-bottom: 80px;
	font-size: 150%;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
ul#page_link{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
	justify-content: space-between;
}
ul#page_link::after{
  content:"";
  display: block;
	max-width: 240px;
   width: calc(100% / 4 - 20px);
}
ul#page_link::before{
  content:"";
  display: block;
	max-width: 240px;
   width: calc(100% / 4 - 20px);
	 order:1;
}
ul#page_link li{
	max-width: 240px;
	 width: calc(100% / 4 - 20px);
}
ul#page_link li a{
display: block;
}
ul#page_link li p{
	position: relative;
	font-size: 100%;
	line-height: 1.5;
	padding: 10px 35px 10px 0;
	background-color: #FFFFFF; 
}
ul#page_link li p span.en{
	color: #006837;
	font-size: 16px;
	display: block;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
ul#page_link li p span.jp{
	font-size: 14px;
	display: block;
}
ul#page_link li p::before{
	content: "";
	width: 25px;
	height: 25px;
	background-image: url("../images/ico_arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
ul#page_link li a:hover p::before{

	background-image: url("../images/ico_arrow_hover.svg");
}

@media screen and (max-width: 991px) {
h2.page_link{
	margin-bottom: 40px;
}	
	ul#page_link{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
	justify-content: space-between;
}
ul#page_link::after{
  content:"";
  display: block;
   width: calc(100% / 3 - 10px);
}
ul#page_link li{
	max-width: 240px;
	 width: calc(100% / 3 - 10px);
}
}
@media screen and (max-width: 768px) {
#sub_ttl h2 span,#sub_img h2 span{
	font-size: 14px;	
}
#sub_ttl h2,#sub_img h2{
	font-size: 150%;
}
/*type01*/
.subttl_type01 {
	padding-top: 30px;
	position: relative;
}
.subttl_type01::before {
	width: 100%;
	height: 70px;
}
.subttl_type01::after {
  width: 100%;
  height: 70px;
  top: 70px;
}
.subttl_type01::after {
  width: 100%;
  height: 50px;
  left: 0;
  top: 70px;
  background-image: url("../images/bg_wave01-b_sp.svg");
}
.subttl_type01 #sub_ttl{
	margin-bottom: 30px;
}


ul#page_link li p{
	font-size: 100%;
	padding: 10px 30px 10px 0;
}
ul#page_link li p span.en{
	font-size: 12px;
}
ul#page_link li p::before{
	content: "";
	width: 25px;
	height: 25px;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
}
@media screen and (max-width: 550px) {
	#f_link{
		background-color: var(--main-beige)	;
		padding: 30px 0 30px 0;
		position: relative;
	}
	#f_link::after {
	content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: -50px;
  background-image: url("../images/bg_wave01-b_sp.svg");
  background-position: center bottom;
	background-size: auto;
  background-repeat: repeat-x;
		z-index: -1;
}
h2.page_link{
	display: none;
}	
	ul#page_link{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
	justify-content: space-between;
}
ul#page_link::after{
  content:"";
  display: block;
   width: calc(100% / 2 - 10px);
}
ul#page_link li{
	max-width: 240px;
	 width: calc(100% / 2 - 10px);
}
ul#page_link li:first-child{
	max-width: 550px;
	 width: calc(100% / 1 - 10px);
}
ul#page_link li .img_wrap{
	display:none;
}
ul#page_link li p .en{
	display:none;
}
ul#page_link li a{
	background-color: #FFFFFF;
	border-radius: 15px;
	padding: 0.5em 0.7em;
}
ul#page_link li p{
	padding: 0 28px 0 0;
}
ul#page_link li p::before{
	width: 25px;
	height: 25px;
	top: 0.5em;
	right: 0;

}
}
/* 下層ページ下共通　大バナー */
#page_banner{
	width: 100%;
	margin: 0 auto 60px auto;
}
#page_banner ul{
display: flex;
justify-content: space-between;
}
#page_banner ul li{
width: 50%;
}
#page_banner ul li a{
	height: 400px;
	width: 100%;
	display: block;
	background-position: center;
background-size: cover;
position: relative;
}
#page_banner ul li a::before{
content: "";
  position: absolute;
  inset: 0;
  background: var(--main-green);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
}
#page_banner ul li a:hover::before{
	opacity: .6;
}
#page_banner ul li a::after{
content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
			width: 30px;
	height: 30px;
	background-image: url("../images/ico_arrow_w.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.3s;
	z-index: 1;
}
#page_banner ul li a:hover::after{
    top: 50%;
    right: 35px;
}
#page_banner ul li.business a{
	background-image: url("../images/page/bt_bz.webp");
}
#page_banner ul li.construction a{
	background-image: url("../images/page/bt_prof.webp");
}
#page_banner ul li.company a{
	background-image: url("../images/page/bt_company.webp");
}
#page_banner ul li a p{
	color: #FFFFFF;
font-size: 312%;
line-height: 1.2;
font-weight: 600;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#page_banner ul li a p span{
font-size: 36px;
font-weight: 600;
display: block;
}
@media screen and (max-width: 1200px) {
	#page_banner ul li a{
	height: 160px;
}
#page_banner ul li a p{
font-size: 175%;
}
#page_banner ul li a p span{
font-size: 18px;
}
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#page_banner{
	margin: 0 auto 20px auto;
}
		#page_banner ul{
flex-direction: column;
gap: 20px 15px;
}
#page_banner ul li{
width: 100%;
}
#page_banner ul li a p{
font-size: 150%;
}
#page_banner ul li a p span{
font-size: 14px;
}

#page_banner ul li a{
	height: 100px;
position: relative;
}
#page_banner ul li a::after{
content: "";
    position: absolute;
    right: 20px;
			width: 20px;
	height: 20px;
}
#page_banner ul li a:hover::after{
    top: 50%;
    right: 15px;
}
}
@media screen and (max-width: 550px) {
	#page_banner ul li a p span{
font-size: 12px;
}
}
/* 下層ページ下共通　小バナー */
#page_banner_s{
	max-width: 1574px;
	margin: 0 auto 60px auto;
}
#page_banner_s ul{
display: flex;
justify-content: space-between;
gap: 20px 30px;
}
#page_banner_s ul li{
width: calc(100% / 2 - 30px);
}
#page_banner_s ul li a{
	height: 160px;
	width: 100%;
	display: block;
	background-position: center;
background-size: cover;
position: relative;
}
#page_banner_s ul li a::before{
content: "";
  position: absolute;
  inset: 0;
  background: var(--main-green);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
}
#page_banner_s ul li a:hover::before{
	opacity: .6;
}
#page_banner_s ul li a::after{
content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
			width: 30px;
	height: 30px;
	background-image: url("../images/ico_arrow_w.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.3s;
	z-index: 1;
}
#page_banner_s ul li a:hover::after{
    top: 50%;
    right: 35px;
}
#page_banner_s ul li.business a{
	background-image: url("../images/page/bt_bz_s.webp");
}
#page_banner_s ul li.construction a{
	background-image: url("../images/page/bt_prof_s.webp");
}
#page_banner_s ul li.company a{
	background-image: url("../images/page/bt_company_s.webp");
}
#page_banner_s ul li a p{
	color: #FFFFFF;
font-size: 312%;
line-height: 1.2;
font-weight: 600;
position: absolute;
left: 50px;
bottom: 20px;
}
#page_banner_s ul li a p span{
font-size: 36px;
font-weight: 600;
display: block;
}
@media screen and (max-width: 1200px) {
	#page_banner_s ul{
display: flex;
justify-content: space-between;
gap: 20px 15px;
}
#page_banner_s ul li{
width: calc(100% / 2 - 15px);
}
#page_banner_s ul li a p{
font-size: 175%;
left: 20px;
bottom: 20px;
}
#page_banner_s ul li a p span{
font-size: 18px;
}
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#page_banner_s{
	margin: 0 auto 20px auto;
}
		#page_banner_s ul{
flex-direction: column;
gap: 20px 15px;
}
#page_banner_s ul li{
width: 100%;
}
#page_banner_s ul li a p{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
bottom: auto;
font-size: 150%;
}
#page_banner_s ul li a p span{
font-size: 14px;
}

#page_banner_s ul li a{
	height: 100px;
position: relative;
}
#page_banner_s ul li a::after{
content: "";
    position: absolute;
    right: 20px;
			width: 20px;
	height: 20px;
}
#page_banner_s ul li a:hover::after{
    top: 50%;
    right: 15px;
}
}
@media screen and (max-width: 550px) {
	#page_banner_s ul li a p span{
font-size: 12px;
}
}
/* 下層ページ下リクルート　バナー */
#recruit_banner.ban_m{
		max-width: 1574px;
	margin: 0 auto;
}
#recruit_banner.ban_s{
		max-width: 1200px;
	margin: 0 auto;
}
#recruit_banner a{
	position: relative;
	display: block;
}
#recruit_banner a::after{
content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
			width: 30px;
	height: 30px;
	background-image: url("../images/ico_arrow_w.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.3s;
	z-index: 1;
}
#recruit_banner a:hover:after{
	right: 35px;
}
#recruit_banner a:hover{
opacity: 0.7;
}

#recruit_banner a .ban_ttl{
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 312%;
line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#recruit_banner a .ban_ttl span{
font-size: 36px;
font-weight: 600;
display: block;
}
#recruit_banner a .ban_txt{
		font-size: 18px;
		position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
#recruit_banner a .ban_ttl{
font-size: 200%;
}
#recruit_banner a .ban_ttl span{
font-size: 16px;
}
#recruit_banner a .ban_txt{
		font-size: 16px;
}
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 768px) {
	#recruit_banner a::after{
content: "";
    position: absolute;
    top: 50%;
    right: 20px;
		width: 20px;
	height: 20px;
}
#recruit_banner a:hover:after{
	right: 15px;
}
#recruit_banner a .ban_ttl{
font-size: 150%;
left: 20px;
}
#recruit_banner a .ban_ttl span{
font-size: 12px;
}
#recruit_banner a .ban_txt{
		font-size: 14px;
		right: 40px;
}
}
@media screen and (max-width: 550px) {
#recruit_banner a .ban_txt{
		font-size: 12px;
}
}
/*-------------------------------------*/
/*	company */
/*-------------------------------------*/
#company .company_ttl{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 175%;
	line-height: 1.5;
	margin-bottom: 1em;
	padding-top: 40px;
}
#company_menu{
	padding-bottom: 200px;
	background-image: url("../images/page/bg_company.webp");
	background-position: center;
	background-size: cover;
	position: relative;
}
#company_menu::after{
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
#company_menu::after {
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
#company_link{
	display: flex;
	justify-content: space-around;
	gap: 40px 20px;
}
#company_link li{
	width: calc( 100% / 2 - 10px );
	margin-bottom: 40px;
}
#company_link li a{
display: block;
position:relative;
}
#company_link li a p{
	position: relative;
	font-size: 150%;
	line-height: 1.5;
	padding: 10px 40px 10px 15px;
		background-color: #FFFFFF;
		font-weight: 500;
}
#company_link li a p span.en{
	color: #006837;
	font-size: 22px;
	margin-left: 10px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#company_link li a p span.jp{
	font-size: 14px;
	display: block;
	margin-top: 5px;
}
#company_link li a p::before{
	content: "";
	width: 25px;
	height: 25px;
	background-image: url("../images/ico_arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0.5em;
	right: 10px;
	transition: 0.3s;
}
#company_link li a:hover p::before{
	background-image: url("../images/ico_arrow_hover.svg");
}
/* company link02 */
#company_link02{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
	justify-content: space-between;
}
#company_link02::before{
  content:"";
  display: block;
	max-width: 370px;
   width: calc(100% / 3 - 20px);
	 order: 1;
}
#company_link02::after{
  content:"";
  display: block;
	max-width: 370px;
   width: calc(100% / 3 - 20px);
}
#company_link02 a{
	max-width: 370px;
	 width: calc(100% / 3 - 20px);
	 display: block;
	 background-color: #FFFFFF; 
}
#company_link02 p{
	position: relative;
	font-size: 150%;
	line-height: 1.5;
	padding: 10px 40px 10px 15px;
	font-weight: 500;
	display: block;
}
#company_link02 p span.en{
	color: #006837;
	font-size: 16px;
	margin-left: 10px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#company_link02 p span.jp{
	font-size: 14px;
	display: block;
}
#company_link02 p::before{
	content: "";
	width: 25px;
	height: 25px;
	background-image: url("../images/ico_arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0.5em;
	right: 10px;
	transition: 0.3s;
}
#company_link02 a:hover p::before{

	background-image: url("../images/ico_arrow_hover.svg");
}
@media screen and (max-width: 991px) {
#company_link02{
	gap: 20px 10px;
}
#company_link02::before{
  content:"";
	max-width: 370px;
  display: block;
   width: calc(100% / 2 - 10px);
}
#company_link02::after{
  content:"";
	max-width: 370px;
  display: block;
   width: calc(100% / 2 - 10px);
}
#company_link02 a{
	max-width: 370px;
	 width: calc(100% / 2 - 10px);
}

}
@media screen and (max-width: 768px) {
	#company_menu{
	padding-bottom: 100px;
	background-image: url("../images/page/bg_company.webp");
}
	#company_link li a p span.en{
	font-size: 16px;
	margin-left: 0;
	display: block;
}
#company_link02 p{
	font-size: 100%;
	padding: 10px 30px 10px 0;
}
#company_link02 p span.en{
	font-size: 12px;
	display: block;
	margin-left: 0;
}
#company_link02 p span.jp{
	display: none;
}
#company_link02 p::before{
	content: "";
	width: 25px;
	height: 25px;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
}
@media screen and (max-width: 550px) {
#company_menu::after{
  width: 100%;
  height: 50px;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w_sp.svg");
}
#company_link{
	flex-direction: column;
	gap: 20px 20px;
		margin-bottom: 20px;
}
#company_link li{
	width: 100%;
	margin-bottom: 0px;
}
#company_link li a{
	border-radius: 15px;
	overflow: hidden;
}
#company_link li a p{
	width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-size: 124%;
	padding: 0 0 0 20px;
		background-color:transparent;
		color: #FFFFFF;
}
#company_link li a p span.en{
	color: #FFFFFF;
	font-size: 16px;
	display: block;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#company_link li a p span.jp{
	display: none;
}
#company_menu li p::before{
	content: "";
	width: 25px;
	height: 25px;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
#company_link02::after{
  content:"";
  display: block;
   width: calc(100% / 2 - 10px);
}
#company_link02 a{
	max-width: 240px;
	 width: calc(100% / 2 - 10px);
}
#company_link02 a .img_wrap{
	display:none;
}
#company_link02 a p .en{
	display:none;
}
#company_link02 a{
	background-color: #FFFFFF;
	border-radius: 15px;
	padding: 1.5em 0.7em;
}
#company_link02 p{
	padding: 0 28px 0 0;
}
#company_link02 p::before{
	width: 25px;
	height: 25px;
	right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
}
/*-------------------------------------*/
/*	message */
/*-------------------------------------*/
#message {
	padding-top: 60px;
	position: relative;
}
#message::before {
	content: "";
	width: 100%;
	height: 270px;
	background-color:var(--main-beige);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
#message::after {
	content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 270px;
  background-image: url("../images/bg_wave01-b.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
	z-index: -1;
}
#message #sub_ttl{
	margin-bottom: 70px;
}
#message h3{
	line-height: 1.5;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 224%;
	font-weight: 700;
	margin-bottom: 60px;
}
#message .txt_box{
	margin-bottom: 100px;
}
#message dl{
	display: flex;
	justify-content: space-between;
}
#message dl dt{
width: 75%;
}
#message dl dt img{
width: 100%;
}
#message dl dd{
width: 25%;
padding: 1em;
color: #FFFFFF;
background-color: #006837;
display: flex;
align-items: flex-end;
}
#message dl dd p{
font-size: 26px;
line-height: 1.5;
}
#message dl dd p span{
font-size: 16px;
display: block;
}
p.name{
	font-size: 163%;
	font-weight: 700;
}
p.name span{
	font-size: 18px;
	margin-right: 10px;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#message::before {
	height: 70px;
}
#message::after {
	content: "";
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  top: 70px;
}
		#message{
padding-top: 30px;
}
#message #sub_ttl{
	margin-bottom: 30px;
}
	#message h3{
	font-size: 125%;
	font-weight: 700;
	margin-bottom: 20px;
}
	#message dl dd{
display: none;
}
#message dl {
flex-direction: column;
}
#message dl dt{
width: 100%;
max-width: 500px;
margin: 0 auto;
}
p.name{
	font-size: 118%;
	font-weight: 700;
}
p.name span{
	font-size: 14px;
	margin-right: 10px;
}
}
@media screen and (max-width: 550px) {
}

/*-------------------------------------*/
/*	profile */
/*-------------------------------------*/
#profile {
	padding-top: 60px;
	position: relative;
	margin-bottom: 80px;
}

#profile .bg_beige {
background-color: var(--main-beige);
position: relative;
z-index: -1;
padding-top: 150px;
}

#profile .bg_beige::after {
	content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/bg_wave01-w.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
		z-index: -1;
}
#profile .bg_beige::before {
	content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  bottom: -120px;
  background-image: url("../images/bg_wave01-b.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
		z-index: -1;
}
#profile #sub_ttl{
}
#profile .gaiyo td .bg_white{
	background-color: #FFFFFF;
	padding: 1em 2em;
	margin: 1em 0;
}

@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#profile {
			padding-top: 30px;
	margin-bottom: 0;
}
#profile .bg_beige {
padding-top: 60px;
}
#profile .bg_beige::after {
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
	background-image: url("../images/bg_wave01-w_sp.svg");
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	history */
/*-------------------------------------*/


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

}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	identity */
/*-------------------------------------*/
dl.identity_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
dl.identity_box dt{
	width: 20%;
	font-weight: 500;
}
dl.identity_box dd{
	width: 75%;
	margin-bottom: 100px;
	line-height: 1.7;
}
dl.identity_box dd:last-of-type{
	margin-bottom: 0px;
}
dl.identity_box dd ul li{
	line-height: 1.7;
	border-bottom: 1px solid #cfb8a8;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
.koudou{
	font-weight: 700;
}
dl.identity_box dd span{
	color: var(--main-green);
	font-weight: 700;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	dl.identity_box{
flex-direction: column;
}
dl.identity_box dt{
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}
dl.identity_box dd{
	width: 100%;
	margin-bottom: 60px;
}
dl.identity_box dd ul li{
	margin-bottom: 20px;
	padding-bottom: 20px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	organization */
/*-------------------------------------*/


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

}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	Location */
/*-------------------------------------*/
a.kanren_ban{
	display: block;
	position: relative;
	height: 160px;
	width: 100%;
	background-position: center;
	background-size: cover;
}
a.kanren_ban::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--main-green);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
}
a.kanren_ban:hover::after{
  opacity: .6;
}
a.kanren_ban.ochi{
background-image: url("../images/page/bt_base01.webp");
}
a.kanren_ban.stk{
background-image: url("../images/page/bt_base02.webp");
}
a.kanren_ban span{
	color: #FFFFFF;
	font-weight: 700;
	font-size: 224%;
	    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
		z-index: 1;
		width: 100%;
		text-align: center;

}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	a.kanren_ban{
	height: 100px;
}
a.kanren_ban span{
	font-size: 138%;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	STK */
/*-------------------------------------*/
#stk #sub_ttl{
	background-color: var(--main-beige);
	padding: 50px 10px;
	margin-bottom: 60px;
}
#stk #sub_ttl h2{
	color: var(--main-green);
}
.stk_message_box{
	display: flex;
	justify-content: space-between;
}
.stk_message_box dt{
	max-width: 240px;
	width: 30%;
}
.stk_message_box dt p.ceo{
font-size: 175%;
font-weight: normal;
margin-top: 20px;
}
.stk_message_box dt p.ceo span{
font-size: 12px;
display: block;
margin-bottom: 5px;
}
.stk_message_box dd{
	width: 67%;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	.stk_message_box{
	flex-direction: column-reverse;
}
.stk_message_box dt{
	max-width: 240px;
	width: 100%;
	margin: 0 auto;
}
.stk_message_box dt p.ceo{
font-size: 113%;
}
.stk_message_box dt p.ceo span{
font-size: 12px;
}
.stk_message_box dd{
	width: 100%;
	margin-bottom: 20px;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	ISO */
/*-------------------------------------*/
a.bt_link01{
display: block;
border-radius: 50px;
padding: 0.5em 1em;
border: 1px solid #cfb8a8;
color: var(--main-green);
}
a.bt_link01:hover{
background : -moz-linear-gradient(0% 50% 0deg,rgba(0, 178, 52, 0.99) 48.18%,rgba(0, 85, 49, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0.4818,rgba(0, 178, 52, 0.99) ),color-stop(1,rgba(0, 85, 49, 1) ));
  background : -o-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234', endColorstr='#005531' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  border-style : Solid;
  border-color : #CFB8A8;
  border-color : rgba(207, 184, 168, 1);
  border-width : 1px;
  border-radius : 20px;
  -moz-border-radius : 20px;
  -webkit-border-radius : 20px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234',endColorstr='#005531' , GradientType=1);
color: #FFFFFF;
}
.iso_box{

}
.iso_box p{
	margin-bottom: 2em;
}
.iso_box02{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.iso_box02 dt{
	max-width: 380px;
	width: 100%;
}
.iso_box02 dd{
	width: 100%;
	padding-left: 20px;
}
.iso_box02 dd p{
	font-size: 88%;
}
.iso_box03 p{
margin-top: 10px;
font-weight: 700;
font-size: 88%;
text-align: center;
}
.iso_box03 p span{
	display: block;
}
hr.txt {
	border-top:1px solid #cfb8a8;
  margin: 1em 0;
    }
.iso_mirai{
	background-color: var(--main-beige);
	position: relative;
	padding-bottom: 150px;
	margin-bottom: 40px;
}
.iso_mirai::before{
	content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
bottom: 0px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
	z-index: 1;
}
.iso_mirai h3{
	font-weight: 900;
	font-size: 250%;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.5;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
.iso_mirai{
	padding-bottom: 80px;
	margin-bottom: 20px;
}
.iso_mirai::before{
  width: 100%;
  height: 50px;
  left: 0;
bottom: 0px;
  background-image: url("../images/bg_wave02-w_sp.svg");
}
.iso_mirai h3{
	font-size: 150%;
}
}
@media screen and (max-width: 550px) {
.iso_box02{
	flex-direction: column;
}
		.iso_box02 dt{
	width: 100%;
	margin: 0 auto 20px auto;
}
.iso_box02 dd{
	width: 100%;
	padding-left: 0;
}
.iso_box02 dd p{
	font-size: 75%;
}
.iso_box03 p{
	font-size: 75%;
}
}
/*-------------------------------------*/
/*	個人情報保護方針	*/
/*-------------------------------------*/
#privacy .privacy_ttl{
	background-color: #F3EEEC;
	padding: 90px 0 50px 0;
}
#privacy .privacy_ttl h2{
	font-size: 300%;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--main-green);
	color: var(--main-green);
	margin-bottom: 40px;
}
#privacy .item__link{
width: 160px;
height: 40px;
background-image: url("../images/bt_plus.svg");
background-position: center;
background-size: contain;
background-repeat: no-repeat;
display: block;
cursor: pointer;
margin: 0 0 20px auto;
transition: 0.3s;
    }
#privacy .item__link.on{
background-image: url("../images/bt_minus.svg");

    }		
		#privacy .submenu{
display: none;
    }
		#privacy h3{
margin-top: 2em;
    }
#privacy .privacy01 table{
	width: 100%;
  line-height: 1.7;
  font-size: 100%;
	border-top:1px solid #cfb8a8;
	background-color: var(--main-beige);
    }
#privacy .privacy01 table,#privacy .privacy01 table tbody td,#privacy .privacy01 table tbody th ,#privacy .privacy01 table thead th{
    border-collapse: collapse;
    }
		#privacy .privacy01 table thead th{
			padding: 1em 1em;
			border-bottom:1px solid #cfb8a8;
		}
#privacy .privacy01 table tbody th{
   font-weight: normal;
	  padding: 1em 1em;
		border-bottom:1px solid #cfb8a8;
		width: 25%;
    }
#privacy .privacy01 table tbody td{
	border-bottom:1px solid #cfb8a8;
 padding: 1em 0.5em;
    }
		#privacy .privacy01 table tbody td{
	border-bottom:1px solid #cfb8a8;
 padding: 1em 0.5em;
    }
#privacy .privacy01 table tbody td ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
	list-style: none;
   line-height: 1.8;
}
#privacy .privacy01 table tbody td ul li:last-child {
  margin-bottom: 0;
}
#privacy .privacy01 table tbody td ul li:before{
  content: "";
  background-color: #000000;
  border-radius: 50px;
  width: 4px;
  height: 4px;
  vertical-align: middle;
  display: block;
  left: 0;
  top: 0.8em;
  position: absolute;
}
#privacy .detail_box p{
	margin-bottom: 1em;
}
#privacy .detail_box.kaiji > ul{
		    margin: 1em 0 1.5em;
	}
#privacy .detail_box.kaiji > ul > li:nth-child(odd) {
    background: var(--main-beige)
}
#privacy .detail_box.kaiji > ul >li {
    list-style: none;
    padding: 20px;
    border-top: 1px solid #cfb8a8;
    border-bottom: 1px solid #cfb8a8;
    margin-bottom: -1px;
}
#privacy .detail_box.kaiji > ul >li dl dt{
	margin-bottom: 10px;
	line-height: 1.8;
}
#privacy .detail_box.kujo > ol{
	margin-bottom: 30px;
}
#privacy .detail_box.kujo > ol > li{
	border: 5px #F3EEEC solid;
    padding: 1em 1.5em;
		margin-bottom: 20px;
}
#privacy .detail_box.kujo > ol > li a{
	color: #0071bc;
	text-decoration: underline;
}
#privacy .detail_box.kujo > ol > li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
#privacy .detail_box.kujo > ol > li a:visited{
	color: #0071bc;
	text-decoration: underline;
}
#privacy .detail_box.kujo > ol > li dl{
	line-height: 1.8;
}
#privacy .detail_box.kujo > ol > li dl dt{
	margin-bottom: 5px;
}
#privacy .detail_box.kujo > ol > li dl dd:not(:last-of-type){
	margin-bottom: 10px;
}
/*-------------------------------------*/
/*	bisiness */
/*-------------------------------------*/
#business .inner{
  background : -moz-linear-gradient(0% 50% 0deg,rgba(0, 152, 68, 1) 0%,rgba(0, 166, 60, 1) 18.19%,rgba(0, 85, 49, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(0, 152, 68, 1) 0%, rgba(0, 166, 60, 1) 18.19%, rgba(0, 85, 49, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(0, 152, 68, 1) ),color-stop(0.1819,rgba(0, 166, 60, 1) ),color-stop(1,rgba(0, 85, 49, 1) ));
  background : -o-linear-gradient(0deg, rgba(0, 152, 68, 1) 0%, rgba(0, 166, 60, 1) 18.19%, rgba(0, 85, 49, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(0, 152, 68, 1) 0%, rgba(0, 166, 60, 1) 18.19%, rgba(0, 85, 49, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#009844', endColorstr='#005531' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(0, 152, 68, 1) 0%, rgba(0, 166, 60, 1) 18.19%, rgba(0, 85, 49, 1) 100%);
  border-radius : 2000px 2002px 0px 0px  / 0px;
  -moz-border-radius : 2000px 2002px 0px 0px  / 0px;
  -webkit-border-radius : 2000px 2002px 0px 0px  / 0px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009844',endColorstr='#005531' , GradientType=1);
	padding-bottom: 140px;
	position: relative;
}
#business .inner::after{
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-b.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
#business #sub_ttl{
	padding: 40px 0;
}
#business #sub_ttl h2,#business #sub_ttl h2 span{
	color: #FFFFFF;
}
#business_menu{
	background-color: var(--main-beige);
	padding-bottom: 200px;
	position: relative;
}
#business_menu::after{
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
}
.service_box {
	color: #FFFFFF;
}

.service_box h2{
font-weight: 700;
font-size: 224%;
line-height: 1.5;
margin-bottom: 40px;
}
/*  business メニューボタン */
.business_link{
	margin-top: -120px;
}
.bnr_service {
  display: block;
  width: 100%;
  color: inherit;
	background-color: #FFFFFF;
	position: relative;
	z-index: 1;
}

.bnr_service__inner {
  display: flex;
  width: 100%;
  height: 240px; /* ← 高さ固定でバナー比率を再現 */
  overflow: hidden;
  	background-color: #FFFFFF;
}

/* 左テキスト */
.bnr_service__content {
  width: 55%;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  transition: 0.3s;
	position: relative;
}

.bnr_service__title {
  font-size: 250%;
  font-weight: 700;
  color: #111;
  transition: 0.3s;
	position: absolute;
	    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.bnr_service__text {
  margin: 0;
  font-size: 88%;
  color: #FFFFFF;
  transition: 0.3s;
	position: absolute;
	left: 40px;
	bottom: 10px;
	display: none;
}
a:hover .bnr_service__text {
  color: #FFFFFF;
	display: block;
}

/* 右画像 */
.bnr_service__image {
  position: relative;
  width: 45%;
	isolation: isolate; 
}
.bnr_service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 緑オーバーレイ（通常時） */
.bnr_service__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #009933; /* ベースの緑 */
  mix-blend-mode: multiply; /* ← これが乗算 */
  opacity: 0.9; /* 強さ調整 */
  transition: 0.3s;
  z-index: 1;
}

/* 矢印 */
a .bnr_service__image:after{
content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
			width: 30px;
	height: 30px;
	background-image: url("../images/ico_arrow_w.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: 0.3s;
	z-index: 1;
}
a:hover .bnr_service__image:after{
	background-image: url("../images/ico_arrow_hover.svg");
	right: 30px;
}

/* hover */
.bnr_service:hover .bnr_service__content {
    background : -moz-linear-gradient(0% 50% 0deg,rgba(0, 178, 52, 0.99) 48.18%,rgba(0, 85, 49, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0.4818,rgba(0, 178, 52, 0.99) ),color-stop(1,rgba(0, 85, 49, 1) ));
  background : -o-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234', endColorstr='#005531' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234',endColorstr='#005531' , GradientType=1);
}

.bnr_service:hover .bnr_service__title,
.bnr_service:hover .bnr_service__text {
  color: #fff;
}

.bnr_service:hover .bnr_service__image::before {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
	.bnr_service {
  margin-bottom: 20px;
}
	.bnr_service__title {
  font-size: 125%;
}
.bnr_service__text {
  font-size: 75%;
}
}
@media screen and (max-width: 991px) {
	.bnr_service__inner {
  height: 180px; /* ← 高さ固定でバナー比率を再現 */
}
.bnr_service__content {
  width: 60%;
}
/* 右画像 */
.bnr_service__image {
  width: 40%;
}
}
@media screen and (max-width: 768px) {
	#business .inner{
		padding-bottom: 50px;
	}
	.service_box h2{
font-size: 150%;
margin-bottom: 20px;
}
#business_menu{
	padding-bottom: 100px;
}
#business_menu::after{
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w_sp.svg");
}
.business_link{
	max-width: 90%;
	margin: -50px auto 0 auto;
}
.bnr_service__inner {
  height: 150px; /* ← 高さ固定でバナー比率を再現 */
}
.bnr_service__content {
  width: 70%;
}
.bnr_service__title {
    left: 20px;
}

.bnr_service__text {
	left: 20px;
}
/* 右画像 */
.bnr_service__image {
  width: 30%;
}
a .bnr_service__image:after{
content: "";
    position: absolute;
    top: 50%;
    right: 20px;
			width: 25px;
	height: 25px;
}
a:hover .bnr_service__image:after{
	right: 10px;
}
}
@media screen and (max-width: 550px) {
#business .inner::after {
  width: 100%;
  height: 50px;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-b_sp.svg");
}
#business_menu::after{
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w_sp.svg");
}
.business_link{
	max-width: 100%;
	margin: -50px auto 0 auto;
}
.bnr_service__inner {
  height: 150px; /* ← 高さ固定でバナー比率を再現 */
}
.bnr_service__content {
  width: 70%;
}
.bnr_service__title {
    left: 20px;
}
	.bnr_service__title {
  font-size: 113%;
}
}
/*-------------------------------------*/
/*	事業内容　下層ページ	*/
/*-------------------------------------*/
/* 事業内容ページ下共通メニュー */
	#f_link02{
padding: 60px 0 0 0;
	}
#f_link02 hr{
	border-top: 1px solid #AC9590;
	margin: 40px 0;
}
h2.page_link02{
	border-bottom: 1px solid #AC9590;
	padding-bottom: 10px;
	line-height: 1.5;
	margin-bottom: 80px;
	font-size: 150%;
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
ul#page_link02{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
	justify-content: space-between;
}
ul#page_link02::after{
  content:"";
  display: block;
	max-width: 240px;
   width: calc(100% / 4 - 20px);
}
ul#page_link02::before{
  content:"";
  display: block;
	max-width: 240px;
   width: calc(100% / 4 - 20px);
	 order:1;
}
ul#page_link02 li{
	max-width: 240px;
	 width: calc(100% / 4 - 20px);
}
ul#page_link02 li a{
display: block;
}
ul#page_link02 li p{
	position: relative;
	font-size: 100%;
	line-height: 1.5;
	padding: 10px 35px 10px 0;
	background-color: #FFFFFF; 
}
ul#page_link02 li p::before{
	content: "";
	width: 25px;
	height: 25px;
	background-image: url("../images/ico_arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
ul#page_link02 li a:hover p::before{
	background-image: url("../images/ico_arrow_hover.svg");
}

@media screen and (max-width: 991px) {
h2.page_link02{
	margin-bottom: 40px;
}	
	ul#page_link02{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
	justify-content: space-between;
}
ul#page_link02::after{
  content:"";
  display: block;
   width: calc(100% / 3 - 10px);
}
ul#page_link02 li{
	max-width: 240px;
	 width: calc(100% / 3 - 10px);
}
}
@media screen and (max-width: 768px) {
ul#page_link02 li p{
	font-size: 100%;
	padding: 10px 30px 10px 0;
}
ul#page_link02 li p span.en{
	font-size: 12px;
}
ul#page_link02 li p::before{
	content: "";
	width: 25px;
	height: 25px;
	top: 0.5em;
	right: 0;
	transition: 0.3s;
}
}
@media screen and (max-width: 550px) {
	#f_link02{
padding: 0 0;
	}
h2.page_link02{
	margin-bottom: 20px;
}	
	ul#page_link02{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 5px;
	justify-content: space-between;
}
ul#page_link02::after{
  content:"";
  display: block;
   width: calc(100% / 3 - 5px);
}
ul#page_link02 li{
	max-width: 240px;
	 width: calc(100% / 3 - 5px);
}
ul#page_link02 li .img_wrap{
	display:none;
}
ul#page_link02 li a{
	background-color: #FFFFFF;
	border: 1px solid #ac9590;
	border-radius: 15px;
	padding: 0.5em 0.5em;
}
ul#page_link02 li p{
	padding: 0 0 30px 0;
		font-size: 88%;
		text-align: center;

}
ul#page_link02 li p::before{
	width: 20px;
	height: 20px;
	top: auto;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
}
/* サブイメージ */
#biz_subimg{
	width: 100%;
	height: 840px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
#biz_subimg::after{
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
#biz_subimg.subimg_infrastructure{
	background-image: url("../images/page/subimg_electrical.webp");
		background-position: center right;
}
#biz_subimg.subimg_engineering{
	background-image: url("../images/page/subimg_kensetsu.webp");
}
#biz_subimg.subimg_densetsu{
	background-image: url("../images/page/subimg_densetsu.webp");
}
#biz_subimg.subimg_ict{
	background-image: url("../images/page/subimg_ict02.webp");
}
#biz_subimg.type01 .biz_heading{
padding-top: 120px;
}
#biz_subimg.type02 .biz_heading{
padding-top: 500px;
}
#biz_subimg .biz_heading__title{
	color: #FFFFFF;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
#biz_subimg .biz_heading__head::before {
  background: #FFFFFF;
}
#biz_subimg h2{
	font-size: 375%;
	color: #FFFFFF;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-top: 20px;
}
@media screen and (max-width: 991px) {
	#biz_subimg{
	height: 500px;
}
	#biz_subimg.type01 .biz_heading{
padding-top: 80px;
}
#biz_subimg.type02 .biz_heading{
padding-top: 300px;
}
}
@media screen and (max-width: 768px) {
	#biz_subimg h2{
	font-size: 150%;
}
}
@media screen and (max-width: 550px) {
#biz_subimg{
  height: 400px;
}
#biz_subimg::after{
  content: none;
}
#biz_subimg.type01 .biz_heading{
padding-top: 60px;
}
#biz_subimg.type02 .biz_heading{
padding-top: 250px;
}
}
/* 上部　コンテンツ */
.biz_top {
  position: relative;
	background-color: var(--main-beige);
	z-index: 1;
	padding-bottom: 200px;
}
.biz_top::before{
	content: "";
	width: 100%;
	height: 30%;
	background-color: #FFFFFF;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.biz_top::after{
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 30%;
  background-image: url("../images/bg_wave01-w.svg");
  background-position: center bottom;
  background-repeat: repeat-x;
	z-index: -1;
}
.biz_top .inner {
  width: 58%;
}
.biz_top .img {
  width: 40%;
  position: absolute;
  right: 0;
  top: 40px;
}
/* 見出し */
.biz_heading {
  margin-bottom: 18px;
}
.biz_heading__head {
  position: relative;
  display: inline-block;
	padding-bottom: 20px;
}
/* 左端から見出し手前まで伸びる線 */
.biz_heading__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(100% + -200px );
  width: 100vw;
  height: 1px;
  background: #cfcfcf;
  transform: translateY(-50%);
}

.biz_heading__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.biz_heading__title.pat01 {
  font-size: 113%;
}

.biz_heading__title.pat02 {
  font-size: 224%;
}

.biz_ttl {
  font-size: 224%;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 40px 0;
}
.biz_txt {
 margin-bottom: 60px;
}
.service_list{
	margin-bottom: 60px;
}
.service_list li{
	margin-bottom: 10px;
	background-color: #FFFFFF;
	padding: 20px;
	font-size: 150%;
	font-weight: 500;
	line-height: 1.8;
}
.service_list li span{
	font-size: 18px;
	font-weight: 500;
}
@media screen and (max-width: 1279px) {
  .biz_top .inner {
    width: 60%;
  }

  .biz_top .img {
    width: 38%;
  }
}
@media screen and (max-width: 991px) {
  .biz_top .inner {
    width: 100%;
  }

  .biz_top .img {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
	.biz_top::before{
	content: "";
	width: 100%;
	height: 10%;
}
.biz_top::after{
  top: 10%;
}
}
@media screen and (max-width: 768px) {
	.biz_top {
	padding-bottom: 100px;
}
		.biz_top::before{
	content: "";
	width: 100%;
	height: 15%;
}
.biz_top::after{
	  background-image: url("../images/bg_circle01-w_sp.svg");
  background-position: top left;
	background-size: contain;
  background-repeat: no-repeat;
  top: 15%;
	left: 0;
	width: 100%;
	height: 333px;
}
  .biz_heading {
    margin-bottom: 14px;
  }

  .biz_heading__head::before {
    right: calc(100% + -200px);
  }

  .biz_heading__title.pat01 {
    font-size: 113%;
  }

  .biz_heading__title.pat02 {
    font-size: 150%;
  }

  .biz_ttl {
    font-size: 150%;
    margin-bottom: 16px;
  }

  .biz_txt {
    line-height: 1.9;
  }
	.service_list li{
	font-size: 113%;
}
.service_list li span{
	font-size: 14px;
	font-weight: 500;
}
}
@media screen and (max-width: 550px) {
.biz_top {
	padding-bottom: 0;
}
}

/* 下部 */
.biz_bottom{
	position: relative;
}
.biz_bottom::before{
	  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  top: -139px;
  background-image: url("../images/bg_wave03-w.svg");
  background-position: center top;
  background-repeat: repeat-x;
	z-index: 1;
}
.biz_list {
  border-top: 1px solid #d8d0cb;
}

.biz_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 0;
  border-bottom: 1px solid #d8d0cb;
}
.biz_row:last-of-type {
  border-bottom: none;
}

/* ← これが超重要：偶数だけ反転 */
.biz_row:nth-child(even) {
  flex-direction: row-reverse;
}

/* =====================
   幅パターン
===================== */

/* 画像広め */
.biz_row--img-lg .biz_row__image {
  width: 54%;
}
.biz_row--img-lg .biz_row__content {
  width: 46%;
}

/* テキスト広め */
.biz_row--text-lg .biz_row__image {
  width: 40%;
}
.biz_row--text-lg .biz_row__content {
  width: 60%;
}

.biz_row__image img {
  width: 100%;
  height: auto;
  display: block;
}

.biz_row__content {
  display: flex;
  flex-direction: column;
}
.biz_row__content p{
  margin-bottom: 0;
}
.biz_bottom .caption{
text-align: center;
margin-bottom: 50px;	
}
.biz_bottom .caption h3{
color: var(--main-green);
font-weight: 700;	
line-height: 1.5;
font-size: 224%;
margin-bottom: 40px;
}
.contact_box{
	background-color: var(--main-beige);
	border-radius: 50px;
	text-align: center;
	padding: 60px;
	background-image: url(../images/page/bg_contact.svg);
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}
.contact_box h2{
	font-size: 300%;
	line-height: 1.5;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #CFB8A8;
}
.contact_box h2 span{
	font-size: 18px;
	display: block;
}
.contact_box ul{
	display: flex;
	justify-content: space-between;
}
.contact_box ul li{
	width: 48%;
}
.contact_box ul li p a{
	display: inline-block;
	color: #2442ff;
	font-size: 250%;
}
@media (max-width: 1200px) {
.contact_box h2{
	font-size: 212%;
}
.contact_box ul li p a{
	display: inline-block;
	color: #2442ff;
	font-size: 212%;
}
}
@media (max-width: 991px) {
.contact_box h2{
	font-size: 150%;
}
.contact_box ul li{
	width: 48%;
}
.contact_box ul li p a{
	display: inline-block;
	color: #2442ff;
	font-size: 150%;
}
}
@media (max-width: 768px) {
  .biz_row,.biz_row:nth-child(even){
    flex-direction: column;
    gap: 14px;
  }
	.biz_row {
  padding: 25px 0;
  border-bottom: none;
}
.biz_list {
    border-top:none;
}

  /* 幅リセット */
  .biz_row__image,
  .biz_row__content {
    width: 100% !important;
  }

  /* 順番固定（重要） */
  .biz_row__image { order: 1; }
  .biz_row__content { order: 2; }

  .biz_row__title {
    font-size: 1.25rem;
  }

  .biz_row__text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
	.biz_bottom .caption h3{
font-size: 150%;
margin-bottom: 40px;
}
.contact_box{
	border-radius: 20px;
	padding: 40px;
	background-image: none;
}
.contact_box h2{
	margin-bottom: 0;
	padding-bottom: 40px;
	border-bottom: none
}
.contact_box h2 span{
	font-size: 14px;
	display: block;
}
.contact_box ul{
	flex-direction: column;
}
.contact_box ul li{
	width: 100%;
	border-top: 1px solid #CFB8A8;
	padding: 20px 0;
	background-repeat: no-repeat;
	background-size: contain;
}
.contact_box ul li:first-child{
	background-image: url("../images/page/bg_contact01_sp.svg");
	background-position: 20% center;
}
.contact_box ul li:last-child{
	background-image: url("../images/page/bg_contact02_sp.svg");
	background-position: 80% center;
}
}
@media screen and (max-width: 550px) {
	.biz_bottom::before{
	  content: none;
}
	.biz_bottom{
	 padding-top: 60px;
	 padding-bottom: 60px;
}
.biz_bottom::before{
	content: "";
	width: 100%;
	height: 450px;
	  background : -moz-linear-gradient(0% 50% 0deg,rgba(0, 178, 52, 0.99) 48.18%,rgba(0, 85, 49, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0.4818,rgba(0, 178, 52, 0.99) ),color-stop(1,rgba(0, 85, 49, 1) ));
  background : -o-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234', endColorstr='#005531' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234',endColorstr='#005531' , GradientType=1);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.biz_bottom::after{
	content: "";
	background-image: url(../images/bg_circle02-w_sp.svg);
        background-position: bottom left;
        background-size: contain;
        background-repeat: no-repeat;
				position: absolute;
        top: calc( 450px - 333px );
        left: 0;
        width: 100%;
        height: 333px;
				z-index: -1;
}
	.biz_bottom .caption{
margin-bottom: 20px;
}
	.biz_bottom .caption h3{
color: #FFFFFF;
margin-bottom: 20px;
}
	.biz_bottom .caption p{
text-align: left;
color: #FFFFFF;
}
}
/* ICTソリューション事業 */
#ict .biz_top::before {
    content: "";
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
#ict .biz_top::after {
    top: 200px;
}
#ict .service_list{
	max-width: 940px;
}
.ict_box{
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 40px;
}
.ict_box:first-of-type img{
	width: 409px;
	height: 300px;
}
.ict_box p{
	width: 100%;
	padding-left: 10px;
}
.ict_box:nth-of-type(2) img{
	width: 435px;
	height: 300px;
}
@media screen and (max-width: 1200px) {
	.ict_box{
	flex-direction: column;
	text-align: center;
	margin-bottom: 20px;
}
.ict_box p{
	padding-left: 0;
}
}
@media screen and (max-width: 991px) {
.ict_box:first-of-type img{
	width: auto;
	height: auto;
}
.ict_box:nth-of-type(2) img{
	width: auto;
	height: auto;
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 550px) {
	#ict .biz_top {
        padding-bottom: 60px;
    }
	    #ict .biz_bottom::before {
        content: none;
    }
	    #ict .biz_bottom .caption h3 {
        color: var(--main-green);
        margin-bottom: 20px;
			}
				    #ict .biz_bottom .caption p {
        color: #000000;
			}
}
/*-------------------------------------*/
/*	ポリシー	*/
/*-------------------------------------*/
#policy_ttl{
	width: 100%;
	height: 190px;
	background-image: url(../images/page/subimg_policy.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#policy_ttl h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
#policy_ttl h2 span{
font-weight: 700;
font-size: 28px;
display: block;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
	#policy_ttl{
	width: 100%;
	height: 80px;
	background-image: url(../images/page/subimg_policy_sp.webp);
}
#policy_ttl h2{
font-size: 150%;
text-align: center;
}
#policy_ttl h2 span{
font-weight: 700;
font-size: 18px;
display: block;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	Movie	*/
/*-------------------------------------*/
#movie_ttl{
	width: 100%;
	height: 319px;
	background-image: url(../images/page/subimg_movie.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#movie_ttl h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto 40px auto;
text-align: center;
}
#movie h3{
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 10px;
	line-height: 1.5;
	border-bottom: 1px solid #000000;
	font-size: 224%;
}
#movie h4{
	font-size: 125%;
	line-height: 1.5;
}
.movie_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.movie_box:last-of-type{
	margin-bottom: 0;
}
.movie_box dt{
width: 48%;
}
.movie_box dd{
width: 48%;
}
.movie_box dd p{
font-weight: 700;
font-size: 300%;
}
.movie_box dd p span{
font-weight: 700;
font-size: 24px;
display: block;
}
@media screen and (max-width: 991px) {
	.movie_box{
	flex-direction: column;
}
.movie_box dt{
width: 100%;
}
.movie_box dd{
width: 100%;
}
.movie_box dd p{
font-weight: 700;
font-size: 250%;
}
.movie_box dd p span{
font-weight: 700;
font-size: 18px;
display: block;
}
}
@media screen and (max-width: 768px) {
		#movie_ttl{
	width: 100%;
	height: 150px;
	background-image: url(../images/page/subimg_movie_sp.webp);
}
#movie_ttl h2{
font-size: 150%;
text-align: center;
}
#movie h3{
	font-size: 150%;
}
#movie h4{
	font-size: 113%;
}
.movie_box dd p{
font-weight: 700;
font-size: 113%;
}
.movie_box dd p span{
font-weight: 700;
font-size: 14px;
display: block;
}
}
@media screen and (max-width: 550px) {
}
/*-------------------------------------*/
/*	施工事例一覧	*/
/*-------------------------------------*/
#construction{
	background-color: var(--main-beige);
	padding-bottom: 200px;
	position: relative;
}
#construction::after {
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../images/bg_wave02-w.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
#construction_ttl{
	width: 100%;
	height: 525px;
	background-image: url(../images/page/subimg_construction.png);
	background-color: var(--main-beige);
background-repeat: repeat-x;
	background-position: center bottom;
		display: flex;
	align-items: center;
	padding: 0 20px;
}
#construction_ttl h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto 300px auto;
text-align: center;
}
.works_catlist{
	display: flex;
	justify-content: space-between;
	gap: 0 4px;
	margin-bottom: 60px;
}
.works_catlist li{
width: calc( 100% / 5 - 4px );
}
.works_catlist li a{
	display: block;
	color: #ac9590;
	font-size: 125%;
	position: relative;
	transition: 0.3s;
	padding-bottom: 15px;
	text-align: center;
}
.works_catlist li a::before{
	content: "";
	width: 100%;
	height: 5px;
	background-color: #ac9590;
	position: absolute;
	left: 0;
	bottom: 0;
}
.works_catlist li a:hover,.works_catlist li a.current{
	color: var(--main-green);
}
.works_catlist li a:hover::before,.works_catlist li a.current::before{
  background : -moz-linear-gradient(0% 50% 0deg,rgba(0, 178, 52, 0.99) 48.18%,rgba(0, 85, 49, 1) 100%);
  background : -webkit-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0.4818,rgba(0, 178, 52, 0.99) ),color-stop(1,rgba(0, 85, 49, 1) ));
  background : -o-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  background : -ms-linear-gradient(0deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234', endColorstr='#005531' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(0, 178, 52, 0.99) 48.18%, rgba(0, 85, 49, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B234',endColorstr='#005531' , GradientType=1);
}
.works_content{
	margin-top: -150px;	
}
.works_list{
	display: flex;
	flex-wrap: wrap;
	 gap: 20px 6px;
	justify-content: space-between;
}
.works_list::after{
  content:"";
  display: block;
  	max-width: 520px;
   width: calc(100% / 3 - 6px);
}
.works_list a{
	max-width: 520px;
	 width: calc(100% / 3 - 6px);
	 overflow: hidden;
	 background-color: #FFFFFF;
	 border-radius: 0 0 60px 0;
}
.works_list a:hover{
box-shadow : 0px 0px 8px rgba(0, 0, 0, 0.4);
}
.works_list a .inner{
	padding: 15px 15px 30px 15px;
}
.works_list a .inner ul{
	display: flex;
	gap: 2px 2px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.works_list a .inner ul li{
	width: calc( 100% / 4 - 2px );
	background-color: var(--main-green);
	color: #FFFFFF;
	padding: 0.5em;
	display: inline-block;
	font-size: 88%;
	text-align: center;
}
.works_list a .inner h3{
	font-size: 150%;
	font-weight: 500;
	line-height: 1.5;
}
@media screen and (max-width: 1200px) {
.works_catlist li a{
	font-size: 100%;
}
.works_list a .inner ul li{
	width: calc( 100% / 2 - 2px );
	background-color: var(--main-green);
}
}
@media screen and (max-width: 991px) {
.works_catlist{
	display: block;
	text-align: center;
}
.works_catlist li{
width: auto;
display: inline-block;
}
.works_catlist li a{
	display: block;
	color: #ac9590;
	font-size:88%;
	padding: 0.5em 1em;
	margin: 3px;
	border: 1px solid #ac9590;
	border-radius: 40px;
}
.works_catlist li a:hover,.works_catlist li a.current{
	color: #FFFFFF;
	background-color: var(--main-green);
	border: 1px solid var(--main-green);
}
.works_catlist li a::before{
	content: none;
}
.works_list::after{
  content:"";
  display: block;
  	max-width: 520px;
   width: calc(100% / 2 - 6px);
}
.works_list a{
	max-width: 520px;
	 width: calc(100% / 2 - 6px);
	 overflow: hidden;
	 background-color: #FFFFFF;
	 border-radius: 0 0 60px 0;
}
}
@media screen and (max-width: 768px) {
#construction_ttl{
	width: 100%;
	height: 150px;
	background-image: url(../images/page/subimg_construction_sp.png);
}
#construction_ttl h2{
font-size: 150%;
text-align: center;
margin-bottom: 0;
margin-bottom: 40px;
}
.works_content{
	margin-top: 20px;	
}
.works_list a .inner h3{
	font-size: 113%;
}
}
@media screen and (max-width: 550px) {
	.works_list{
	flex-direction: column;
	 gap: 40px 6px;
}
.works_list::after{
  content:"";
  display: block;
   width: 100%;
}
.works_list a .inner ul{
	margin-bottom: 15px;
}
.works_list a{
	max-width: 520px;
	width: 100%;
	 border-radius: 0 0 30px 0;
	 margin:  0 auto;
}
}
/*-------------------------------------*/
/*	施工事例詳細	*/
/*-------------------------------------*/
#works_ttl{
	width: 100%;
	height: 190px;
	background-image: url(../images/page/subimg_works.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#works_ttl h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto;
text-align: center;
}
.cat_list{
	display: flex;
	justify-content: center;
	gap: 5px 5px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.cat_list li{
	width: calc( 100% / 4 - 5px);
}
.cat_list li a{
	display: block;
	background-color: var(--main-green);
	color: #FFFFFF;
	font-weight: 700;
	font-size: 113%;
	text-align: center;
	padding: 0.5em;
}
.works_ttl02{
	line-height: 1.5;
	font-weight: 700;
	font-size: 180%;
	text-align: center;
	margin-bottom: 20px;
}
.sld_wrap{
	margin-bottom: 40px;
}
.other_works{
	background-color: var(--main-beige);
	position: relative;
	margin-top: 50px;
}
.other_works::before{
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  top: -140px;
  background-image: url("../images/bg_wave03-b.svg");
  background-position: center top;
  background-repeat: repeat-x;
}
.other_works h2{
	font-size: 150%;
	line-height: 1;
	padding-bottom: 70px;
	position: relative;
	text-align: center;
	z-index: 1;
}
.other_works h2 span{
	color: #FFFFFF;
	font-size: 400%;
	    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
		width: 100%;
		display: block;	
		z-index: -1;
}
.other_works_list{
	display: flex;
	justify-content: space-between;
	gap: 20px 20px;
	z-index: 1;
	position: relative;
}
.other_works_list a{
	width: calc( 100% / 3 - 20px );
}
@media screen and (max-width: 1200px) {
	.cat_list li a{
	font-size: 113%;
}
.other_works h2{
	font-size: 150%;
	line-height: 1.5;
	padding-bottom: 50px;
	position: relative;
	text-align: center;
}
.other_works h2 span{
	color: #FFFFFF;
	font-size: 300%;

		width: 90%;
		display: block;	
}
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
#works_ttl{
	width: 100%;
	height: 80px;
	background-image: url(../images/page/subimg_policy_sp.webp);
}
#works_ttl h2{
font-size: 150%;
text-align: center;
}
.cat_list{
	margin-bottom: 20px;
}
.cat_list li{
	width: calc( 100% / 2 - 5px);
}
	.cat_list li a{
	font-size:88%;
}
.works_ttl02{
	font-size: 150%;
	margin-bottom: 20px;
}
.other_works_list{
	display: flex;
	justify-content: space-between;
	gap: 20px 10px;
	z-index: 1;
	position: relative;
}
.other_works_list a{
	width: calc( 100% / 3 - 10px );
}

}
@media screen and (max-width: 550px) {
	.other_works h2{
	font-size: 113%;
	line-height: 1.5;
	padding-bottom: 50px;
	position: relative;
	text-align: center;
}
	.other_works h2 span{
	color: #FFFFFF;
	font-size: 200%;
}
}
/*-------------------------------------*/
/*	新着記事　詳細	*/
/*-------------------------------------*/
#news_ttl02{
	width: 100%;
	height: 190px;
	background-image: url(../images/page/subimg_news01.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#news_ttl02 h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
#news_ttl02 h2 span{
font-weight: 700;
font-size: 28px;
display: block;
}

#single h2.page_ttl{
	font-size: 224%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ac9590;
	letter-spacing: 0.1em;
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-green);
}
#single .date{
	margin-right: 10px;
	color: #666666;
	font-size: 88%;
}
.thumb{
	display: block;
	margin: 0 auto 40px auto;
	text-align: center;
}
/*ページャー*/
#pager{
	margin: 40px 0;
	border-bottom: 2px solid #FFFFFF;
	border-top: 2px solid #FFFFFF;
}
#pager li.prev{
	width: 50%;
	float: left;
}
#pager li.next{
	width: 50%;
	float: right;
	text-align: right;
}
#pager li a{
	display: block;
	padding: 1em 0;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform:capitalize;
}
#pager li a:hover{
	color:#745852;
}
#pager li.prev a::before{
	content: "\f104";
    font-family: FontAwesome;
	margin-right: 10px;
	color: #ac9590;
}
#pager li.next a::after{
	content: "\f105";
    font-family: FontAwesome;
	margin-left: 10px;
	color: #ac9590;
}
@media screen and (max-width: 768px){
		#news_ttl02{
	width: 100%;
	height: 80px;
	background-image: url(../images/page/subimg_news01_sp.webp);
}
#news_ttl02 h2{
font-size: 150%;
}
#news_ttl02 h2 span{
font-weight: 700;
font-size: 18px;
display: block;
}
	h2.page_ttl{
	font-size: 150%;
}
}

/*-------------------------------------*/
/*	新着一覧	*/
/*-------------------------------------*/
#news_ttl{
	width: 100%;
	height: 360px;
	background-image: url(../images/page/subimg_news02.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#news_ttl h2{
color: #FFFFFF;
font-weight: 700;
font-family: "Zen Kaku Gothic Antique", sans-serif;
font-size: 362%;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
#news_ttl h2 span{
font-weight: 700;
font-size: 28px;
display: block;
}
/*一覧*/
.news_list {
  padding: 0;
}
.news_list li{

}
.news_list li:nth-child(odd){
	/*background: #F4F3F6;*/
 
}
.news_list .item {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  border-bottom: 1px solid #AC9590;;
}
.news_list .item:first-child {
  border-top: 1px solid #AC9590;;
}
.news_list .item .meta_entry {
  display: flex;
	width: 45%;
	align-items: center;
}
.news_list .item .date {
  margin: 0;
  min-width: 120px;
  color: #666;
  padding: 0 15px 0 15px;
}
.news_list .item .category {
  margin: 0;
  min-width: 150px;
}
.news_list .item .title {
  margin: 0;
  width: 100%;
	line-height: 2;
}
.news_list .item .title a{
   display: block;
	  padding: 15px 0.5em;
}
.news_list .item .title a:hover {
  opacity: 0.7;
	color: #000;
}
/* カテゴリーラベル */
.ico_new  {
  letter-spacing: 0.05em;
  color: #FFFFFF !important;
  text-align: center;
  display: inline-block;
  padding: 0.5em;
  font-size: 100%;
  line-height: 1;
	 background:#009000;
}
.category .ico_new {
	width: 100%;
}
@media screen and (max-width: 991px){

}
@media screen and (max-width: 768px){
	#news_ttl{
	width: 100%;
	height: 80px;
	background-image: url(../images/page/subimg_news02_sp.webp);
}
#news_ttl h2{
font-size: 150%;
}
#news_ttl h2 span{
font-weight: 700;
font-size: 18px;
display: block;
}
.news_list li{
padding-top: 15px;
}
  .news_list .item {
    flex-wrap: wrap;
  }
	.news_list .item .meta_entry {
  display: flex;
flex-direction: row-reverse;
width: 100%;
justify-content: left;
}
.news_list .item .category {
  margin-right: 20px;
}
  .news_list .item .date {
    min-width: 100px;
		  padding: 0 ;
  }
.news_list .item .title a{
   display: block;
	  padding: 15px 0.5em;
  }
	.ico_new  {
  font-size: 88%;
}
}
@media screen and (max-width: 550px){

}
/*-------------------------------------*/
/*	一覧ページナビ	*/
/*-------------------------------------*/
/*	ページナビ関連	*/
.wp-pagenavi {
	clear: both;
	margin: 40px auto auto;
	text-align: center;
	font-size: 100%;
}
.wp-pagenavi a{
	text-decoration: none!important;
	padding: 0.9em 1.2em!important;
	margin: 3px;
	display: inline-block;
	color:#ac9590!important;
	background:#FFFFFF;
	border: 1px solid #FFFFFF;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	font-size: 100%;
	font-weight: 600;
	border-radius: 50px;
}
.wp-pagenavi span{
	color:#ac9590;
}
.wp-pagenavi span.current {
	text-decoration: none!important;
	padding: 0.9em 1.2em!important;
	margin: 3px;
	display: inline-block;
	border: 1px solid #ac9590;
	color:#FFFFFF;
	background:#ac9590;
	font-size: 100%;
	font-style: italic;
	font-weight: 600;
	border-radius: 50px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #ac9590!important;
}
.wp-pagenavi a:hover{
	border: 1px solid #ac9590;
	color: #ac9590!important;
	text-decoration: none!important;
	background:#FFFFFF!important;
	padding: 0.9em 1.2em!important;
	border-radius: 50px;
}
.wp-pagenavi a:hover span{
	color:#FFFFFF;
}
.wp-pagenavi span {
    border: none!important;
}

.extend{
	padding: 0 10px 0 10px;
}
@media screen and (max-width: 768px){
.previouspostslink,.nextpostslink{
	font-size: 86%;
}
	.wp-pagenavi {
	font-size: 88%;
}
}